windows: testall.sh skip niti and nitvm on Windows because they fail
authorAlexis Laferrière <alexis.laf@xymus.net>
Thu, 7 Jun 2018 14:36:45 +0000 (10:36 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Thu, 7 Jun 2018 14:36:45 +0000 (10:36 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

tests/testall.sh

index 61b00e9..7740b5f 100755 (executable)
 # limitations under the License.
 
 # Run some tests on each engine
-for x in nitcg nitcs nitcsg nitce niti nitvm; do
+
+engine=(nitcg nitcg nitcs nitcsg nitce niti nitvm)
+if uname | grep MINGW64 1>/dev/null 2>&1; then
+       engine=(nitcg nitcg nitcs nitcsg nitce)
+fi
+
+for x in "${engine[@]}"; do
        echo "--engine $x"
        ./tests.sh --engine $x "$@"
 done