瀏覽代碼

Disable `FANCY_OUTPUT` in Odin test scripts

This should tidy up the CI output logs a bit.
Feoramund 1 年之前
父節點
當前提交
890fe07c6e

+ 1 - 1
tests/benchmark/Makefile

@@ -1,5 +1,5 @@
 ODIN=../../odin
-COMMON=-no-bounds-check -vet -strict-style
+COMMON=-no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false
 
 all: crypto_bench \
      hash_bench

+ 2 - 2
tests/benchmark/build.bat

@@ -1,5 +1,5 @@
 @echo off
-set COMMON=-no-bounds-check -vet -strict-style
+set COMMON=-no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false
 set PATH_TO_ODIN==..\..\odin
 
 echo ---
@@ -10,4 +10,4 @@ echo ---
 echo ---
 echo Running core:hash benchmarks
 echo ---
-%PATH_TO_ODIN% test hash %COMMON% -o:speed -out:bench_hash.exe || exit /b
+%PATH_TO_ODIN% test hash %COMMON% -o:speed -out:bench_hash.exe || exit /b

+ 1 - 1
tests/core/Makefile

@@ -1,6 +1,6 @@
 ODIN=../../odin
 PYTHON=$(shell which python3)
-COMMON=-no-bounds-check -vet -strict-style
+COMMON=-no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false
 
 all: all_bsd \
      net_test

+ 1 - 1
tests/core/build.bat

@@ -1,5 +1,5 @@
 @echo off
-set COMMON=-no-bounds-check -vet -strict-style
+set COMMON=-no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false
 set PATH_TO_ODIN==..\..\odin
 python3 download_assets.py
 echo ---

+ 1 - 1
tests/core/math/big/build.bat

@@ -5,7 +5,7 @@ set TEST_ARGS=-fast-tests
 set TEST_ARGS=-no-random
 set TEST_ARGS=
 set OUT_NAME=math_big_test_library.dll
-set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
+set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style -define:ODIN_TEST_FANCY=false
 echo ---
 echo Running core:math/big tests
 echo ---

+ 1 - 1
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
 

+ 1 - 1
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: "
 

+ 1 - 1
tests/vendor/build.bat

@@ -1,5 +1,5 @@
 @echo off
-set COMMON=-show-timings -no-bounds-check -vet -strict-style
+set COMMON=-show-timings -no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false
 set PATH_TO_ODIN==..\..\odin
 
 echo ---