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:
authorNick Guerrera <nicholg@microsoft.com>2015-07-22 20:51:32 +0300
committerNick Guerrera <nicholg@microsoft.com>2015-07-22 20:54:46 +0300
commit52f57e8e6c6aed656d40fb9b638081cff10c6e10 (patch)
tree8a98f9fc970b4a6f9045103c14d9859ca95807de /run-test.sh
parente35129f7dc1cd7c74bad286729384ae91de2ea27 (diff)
Respond to PR feedback
* Rename shims to match their underlying platform API names * Update guidelines * Add errno conversion TODO * Account for OS X in run-test.sh
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-test.sh b/run-test.sh
index 3c3524985a..0410f48db8 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -129,11 +129,11 @@ create_test_overlay()
fi
find $CoreFxBins -name '*.dll' -exec cp '{}' "$OverlayDir" ";"
- # Then the native linux CoreFX binaries
+ # Then the native CoreFX binaries
#
# TODO: Currently, CI does not build the native CoreFX components so build them here
# in the test phase for now.
- ( $ProjectRoot/src/Native/build.sh && cp $ProjectRoot/bin/$OS.x64.$Configuration/Native/*.so $OverlayDir ) || exit 1
+ ( $ProjectRoot/src/Native/build.sh && cp $ProjectRoot/bin/$OS.x64.$Configuration/Native/* $OverlayDir ) || exit 1
}
copy_test_overlay()