From 9be30a7e09db0249a39308b0fb74b9d7e36ffcc3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 7 Jun 2018 10:36:45 -0400 Subject: [PATCH] windows: testall.sh skip niti and nitvm on Windows because they fail MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- tests/testall.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- 1.7.9.5