From: Alexis Laferrière Date: Thu, 7 Jun 2018 14:36:45 +0000 (-0400) Subject: windows: testall.sh skip niti and nitvm on Windows because they fail X-Git-Url: http://nitlanguage.org windows: testall.sh skip niti and nitvm on Windows because they fail Signed-off-by: Alexis Laferrière --- diff --git a/tests/testall.sh b/tests/testall.sh index 61b00e9..7740b5f 100755 --- a/tests/testall.sh +++ b/tests/testall.sh @@ -14,7 +14,13 @@ # 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