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:
authorWes Haggard <Wes.Haggard@microsoft.com>2015-09-16 12:02:09 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2015-09-16 12:02:09 +0300
commit406540dc0aad835a9492131a2718dc61298e9379 (patch)
tree2fdf8d63626353f6a8f8051f78eaf69e916c9a1c /run-test.sh
parentd08f2401e090c899fc7939ca4416e25edf3afce4 (diff)
Add exclusion for ToolRuntime directory in the linux test script
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-test.sh b/run-test.sh
index d75e40ec55..94504f63ee 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -137,7 +137,7 @@ create_test_overlay()
echo "Corefx binaries not found at $CoreFxBins"
exit 1
fi
- find $CoreFxBins -name '*.dll' -and -not -name "*Test*" -exec cp '{}' "$OverlayDir" ";"
+ find $CoreFxBins -path "*ToolRuntime*" -prune -o -name '*.dll' -and -not -name "*Test*" -exec cp '{}' "$OverlayDir" ";"
# Then the native CoreFX binaries
if [ ! -d $CoreFxNativeBins ]