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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/run-test.sh b/run-test.sh
index 72ae173a40..9d390fde64 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -190,9 +190,17 @@ runtest()
copy_test_overlay $dirName
+ pushd $dirName > /dev/null
+
+ # Remove the mscorlib native image, since our current test layout build process
+ # uses a windows runtime and so we include the windows native image for mscorlib
+ if [ -e mscorlib.ni.dll ]
+ then
+ rm mscorlib.ni.dll
+ fi
+
# Invoke xunit
- pushd $dirName > /dev/null
echo
echo "Running tests in $dirName"
echo "./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml -notrait category=failing -notrait category=OuterLoop -notrait category=$xunitOSCategory"