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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-03-31 02:13:03 +0300
committerGitHub <noreply@github.com>2018-03-31 02:13:03 +0300
commit2cbd1706dcc567bf38d43b8f80ad7e928a02a7f5 (patch)
tree65c5e998f8d444b47ea4fb4802f78af1d1a9c8c6 /scripts
parent4d78aaf7b46c9f6d32bc4d74e94cd2283bbba04f (diff)
[System.Drawing] Enable corefx xunit tests (#7924)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-default.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/ci/run-test-default.sh b/scripts/ci/run-test-default.sh
index 707fc071a16..58fc8b39a63 100755
--- a/scripts/ci/run-test-default.sh
+++ b/scripts/ci/run-test-default.sh
@@ -23,7 +23,9 @@ ${TESTCMD} --label=Mono.Security --timeout=5m make -w -C mcs/class/Mono.Security
${TESTCMD} --label=System.Security --timeout=5m make -w -C mcs/class/System.Security run-test
if [[ ${CI_TAGS} == *'win-'* ]]
then ${TESTCMD} --label=System.Drawing --skip;
-else ${TESTCMD} --label=System.Drawing --timeout=5m make -w -C mcs/class/System.Drawing run-test
+else
+ ${TESTCMD} --label=System.Drawing --timeout=5m make -w -C mcs/class/System.Drawing run-test
+ ${TESTCMD} --label=System.Drawing-xunit --timeout=5m make -w -C mcs/class/System.Drawing run-xunit-test
fi
if [[ ${CI_TAGS} == *'osx-'* ]] || [[ ${CI_TAGS} == *'win-'* ]]
then ${TESTCMD} --label=Windows.Forms --skip;