diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-08 19:02:14 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-24 13:37:26 +0200 |
| commit | 76d48b38d394b953ea4bbe1420ecd11e6e7dd028 (patch) | |
| tree | 8c61c9ca2af6355e0e822d97756063290900db09 /tests/issues | |
| parent | 3cab2592c3e5a06882ffd711871a08c893b043f1 (diff) | |
Compiler: Allow -out: to not have an extension on *nix for executables (only).
Diffstat (limited to 'tests/issues')
| -rwxr-xr-x | tests/issues/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/issues/run.sh b/tests/issues/run.sh index 91ec99e05..117a9a5f1 100755 --- a/tests/issues/run.sh +++ b/tests/issues/run.sh @@ -8,10 +8,10 @@ COMMON="-collection:tests=tests -out:tests/issues/build/test_issue" set -x ./odin build tests/issues/test_issue_829.odin $COMMON -file -tests/issues/build/test_issue.bin +tests/issues/build/test_issue ./odin build tests/issues/test_issue_1592.odin $COMMON -file -tests/issues/build/test_issue.bin +tests/issues/build/test_issue set +x |