From e6848434aec38b932f9d0954a099e4e4c2522d3d Mon Sep 17 00:00:00 2001 From: Greg Tucker Date: Mon, 28 Oct 2019 15:52:48 -0700 Subject: [PATCH] test: Fix issue keeping mingw tests from running Change-Id: I1e72ed99c2f09cbad488774313cddafdb1ce5de8 Signed-off-by: Greg Tucker --- tools/test_extended.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test_extended.sh b/tools/test_extended.sh index 7308dd6..8f46a1f 100755 --- a/tools/test_extended.sh +++ b/tools/test_extended.sh @@ -181,7 +181,7 @@ $MAKE -f Makefile.unx arch=noarch clean msg+=$'Noarch build: Pass\n' # Try mingw build -if [ $(uname -m) == "x86_64" ] && [ command -V x86_64-w64-mingw32-gcc >/dev/null 2>&1 ]; then +if [ $(uname -m) == "x86_64" ] && command -V x86_64-w64-mingw32-gcc >/dev/null 2>&1; then test_start "mingw_build" time $MAKE -f Makefile.unx -j $cpus arch=mingw test_end "mingw_build" $?