From 943e21152b10aa8d57cee7377580bfc96bb2b1dd Mon Sep 17 00:00:00 2001 From: Kari Pihkala Date: Mon, 15 Apr 2024 12:01:11 +0300 Subject: [PATCH] Fix test.sh --- tools/test.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/tools/test.sh b/tools/test.sh index 31aa82a..f34fc0d 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -10,11 +10,26 @@ cargo doc # run all tests cargo test +echo "---t1" +ls -la +echo "---t2" +ls -la toisto-au-test-suite +echo "---t3" +ls -la ../target +echo "---t4" +ls -la ../target/debug +echo "---t5" +ls -la ../target/debug/examples +echo "---t6" + +# build the toisto tester +cargo build --example ausnd-aureader-toisto + # run the toisto test suite echo echo 'Toisto AU test suite results:' cd toisto-au-test-suite -python3 toisto-runner.py -c --override-list ../toisto-ausnd-override-list.json ../target/debug/examples/ausnd-aureader-toisto +python3 toisto-runner.py -c -v --override-list ../toisto-ausnd-override-list.json ../target/debug/examples/ausnd-aureader-toisto echo echo "--- All tests OK."