]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: do not set driver for tests
authorJérémie Astor <fennecdjay@gmail.com>
Sun, 10 Apr 2022 21:30:06 +0000 (23:30 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Sun, 10 Apr 2022 21:30:06 +0000 (23:30 +0200)
scripts/test.sh

index fb527a5229dc8e2a3edb4b668d5c4f9d43788873..e056831114d616b3181935df7c9e41d73c1324d2 100644 (file)
@@ -11,7 +11,7 @@
 : "${ANSI_CLEAR:=\033[0K}"
 : "${ANSI_BOLD:=\033[33;1m}"
 
-: "${DRIVER:=dummy}"
+#!: "${DRIVER:=dummy}"
 
 : "${ASYNC:=4}"
 : "${async:=$ASYNC}"
@@ -132,7 +132,8 @@ test_gw(){
   slog=${GWION_TEST_DIR}${separator}${GWION_TEST_PREFIX}$(printf "%04i" "$n").std.log
   elog=${GWION_TEST_DIR}${separator}${GWION_TEST_PREFIX}$(printf "%04i" "$n").err.log
   rlog=${GWION_TEST_DIR}${separator}${GWION_TEST_PREFIX}$(printf "%04i" "$n").log
-  LANG=C ./"$PRG" "$GWOPT" -d "$DRIVER" "$file" > "$slog" 2>"$elog" |:
+#!  LANG=C ./"$PRG" "$GWOPT" -d "$DRIVER" "$file" > "$slog" 2>"$elog" |:
+  LANG=C ./"$PRG" "$GWOPT" "$file" > "$slog" 2>"$elog" |:
   ret=$?
   #enable skip
   do_skip "$1" "$n" "$file" "$rlog" && return 0