diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-01 19:59:20 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-02 14:54:32 -0400 |
| commit | 890fe07c6e7e1e52407e458ea125d4d29b171c60 (patch) | |
| tree | 0c4a66c9830c151dd820be20fa356ef7ec582420 /tests/issues | |
| parent | d581dbbec52a7ddcb8dbc986240a5d5092659450 (diff) | |
Disable `FANCY_OUTPUT` in Odin test scripts
This should tidy up the CI output logs a bit.
Diffstat (limited to 'tests/issues')
| -rw-r--r-- | tests/issues/run.bat | 2 | ||||
| -rwxr-xr-x | tests/issues/run.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/issues/run.bat b/tests/issues/run.bat index 41c52c02f..cd23faefb 100644 --- a/tests/issues/run.bat +++ b/tests/issues/run.bat @@ -3,7 +3,7 @@ if not exist "build\" mkdir build pushd build -set COMMON=-collection:tests=..\.. +set COMMON=-collection:tests=..\.. -define:ODIN_TEST_FANCY=false @echo on diff --git a/tests/issues/run.sh b/tests/issues/run.sh index 6d53388a7..a7eee8514 100755 --- a/tests/issues/run.sh +++ b/tests/issues/run.sh @@ -4,7 +4,7 @@ set -eu mkdir -p build pushd build ODIN=../../../odin -COMMON="-collection:tests=../.." +COMMON="-collection:tests=../.. -define:ODIN_TEST_FANCY=false" NO_NIL_ERR="Error: " |