Disable FANCY_OUTPUT in Odin test scripts

This should tidy up the CI output logs a bit.
This commit is contained in:
Feoramund
2024-06-01 19:59:20 -04:00
parent d581dbbec5
commit 890fe07c6e
8 changed files with 9 additions and 9 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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 ---

View File

@@ -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 ---

View File

@@ -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

View File

@@ -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: "

View File

@@ -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 ---