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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2017-08-25 01:13:07 +0300
committerMarek Safar <marek.safar@gmail.com>2017-11-27 13:15:07 +0300
commit22adb80c21d3c9d997d830bfef12cd1efa62abdb (patch)
tree1e2d1bc0557f6b087d5f56f88d381c6a8f4257ba /acceptance-tests/roslyn.mk
parent5f7452f384940c54ea9fed8189d97d094a14b8fa (diff)
Update roslyn tests
Diffstat (limited to 'acceptance-tests/roslyn.mk')
-rw-r--r--acceptance-tests/roslyn.mk17
1 files changed, 2 insertions, 15 deletions
diff --git a/acceptance-tests/roslyn.mk b/acceptance-tests/roslyn.mk
index a91c68d986b..c4e8c866493 100644
--- a/acceptance-tests/roslyn.mk
+++ b/acceptance-tests/roslyn.mk
@@ -1,18 +1,5 @@
check-roslyn:
@$(MAKE) validate-roslyn RESET_VERSIONS=1
- @if [ -z $$PREFIX ]; then echo "You need to set PREFIX to the prefix of the Mono installation that should be used for testing Roslyn." && exit 1; fi
- sed -i -e 's/\\4.5-api"/\\4.5"/g' $$PREFIX/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml; \
- export MSBuildExtensionsPath=$$PREFIX/lib/mono/xbuild; \
- MONO_DOTNET_PORTABLE_DIR=$$PREFIX/lib/mono/xbuild-frameworks/.NETPortable/; \
- if [ ! -d "$$MONO_DOTNET_PORTABLE_DIR/v4.6" ]; then \
- mkdir -p $$MONO_DOTNET_PORTABLE_DIR; \
- curl -SL "http://download.mono-project.com/third-party/RoslynBuildDependencies.zip" > /tmp/RoslynBuildDependencies.zip; \
- unzip -o /tmp/RoslynBuildDependencies.zip -d /tmp/RoslynBuildDependencies; \
- cp -r /tmp/RoslynBuildDependencies/PortableReferenceAssemblies/* $$MONO_DOTNET_PORTABLE_DIR; \
- fi; \
cd $(ROSLYN_PATH); \
- sed -i -e 'N; s/bootstrapArg=".*\n.*"/bootstrapArg=""/g' cibuild.sh; \
- sed -i -e 's#-xml Binaries/\$$BUILD_CONFIGURATION/xUnitResults/#-nunit $(abs_top_builddir)/acceptance-tests/TestResult-#g' cibuild.sh; \
- ./cibuild.sh --mono-path $$PREFIX/bin || EXIT_CODE=1; \
- sed -i -e 's/\\4.5"/\\4.5-api"/g' $$PREFIX/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml; \
- exit $$EXIT_CODE
+ ./mono-testing.sh "$(XUNIT)" || exit; \
+ echo "done"