test: Fix issue keeping mingw tests from running

Change-Id: I1e72ed99c2f09cbad488774313cddafdb1ce5de8
Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
Greg Tucker 2019-10-28 15:52:48 -07:00
parent 533ba53f11
commit e6848434ae

View File

@ -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" $?