Skip to content

Commit 43735a4

Browse files
committed
Merge pull request mono#900 from mono/5.9-orange-builds
[Build] Don't fail tests for windows if dll is not found.
2 parents f97f359 + 7f6d15d commit 43735a4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main/wintest.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ else
1010
arg="build/tests/$arg"
1111
fi
1212

13-
(build/bin/mdtool run-md-tests $arg) || exit $?
13+
if [ -f $arg ]; then
14+
(build/bin/mdtool run-md-tests $arg) || exit $?
15+
fi
1416
done
1517
fi

0 commit comments

Comments
 (0)