Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Simple/StaticLibrary/StaticLibrary.sh')
-rwxr-xr-xtests/src/Simple/StaticLibrary/StaticLibrary.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/src/Simple/StaticLibrary/StaticLibrary.sh b/tests/src/Simple/StaticLibrary/StaticLibrary.sh
new file mode 100755
index 000000000..6640f629f
--- /dev/null
+++ b/tests/src/Simple/StaticLibrary/StaticLibrary.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+$1/$2
+if [ $? == 100 ]; then
+ echo pass
+ exit 0
+else
+ echo fail
+ exit 1
+fi