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:
authorVlad Brezae <brezaevlad@gmail.com>2018-08-15 07:05:01 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-08-15 07:05:01 +0300
commit32d9b9ec3ae24acfe621c3cac701a4a9a1d741cc (patch)
tree06157581b35083e013da7296f7cb7379fbf70c1d /scripts/ci
parent583bae5a0ad1c636841bd36ac9c1658198f948b1 (diff)
[interp] Fix missing InvalidProgramException (#10095)
* [interp] Throw proper exception instead of warning Fix code causing wrong stack state. * [interp] Compile method for errors when needed Delegate creation doesn't require compiling the method. * [interp] Enable System.Core xunit tests
Diffstat (limited to 'scripts/ci')
-rwxr-xr-xscripts/ci/run-test-interpreter.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/run-test-interpreter.sh b/scripts/ci/run-test-interpreter.sh
index 21be9ec3612..31636e7fc74 100755
--- a/scripts/ci/run-test-interpreter.sh
+++ b/scripts/ci/run-test-interpreter.sh
@@ -49,7 +49,7 @@ if [[ ${CI_TAGS} != *'pull-request'* ]] || [[ ${CI_TAGS} != *'arm'* ]]; then
${TESTCMD} --label=System.Configuration --timeout=5m make -w -C mcs/class/System.Configuration run-test V=1
${TESTCMD} --label=System.Transactions --timeout=5m make -w -C mcs/class/System.Transactions run-test V=1
${TESTCMD} --label=System.Web.Extensions --timeout=5m make -w -C mcs/class/System.Web.Extensions run-test V=1
- #${TESTCMD} --label=System.Core-xunit --timeout=15m make -w -C mcs/class/System.Core run-xunit-test V=1
+ ${TESTCMD} --label=System.Core-xunit --timeout=15m make -w -C mcs/class/System.Core run-xunit-test V=1
${TESTCMD} --label=System.Xml.Linq --timeout=5m make -w -C mcs/class/System.Xml.Linq run-test V=1
${TESTCMD} --label=System.Xml.Linq-xunit --timeout=15m make -w -C mcs/class/System.Xml.Linq run-xunit-test V=1
${TESTCMD} --label=System.Data.DSE --timeout=5m make -w -C mcs/class/System.Data.DataSetExtensions run-test V=1