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:
authorEgor Bogatov <egorbo@gmail.com>2019-12-09 16:55:44 +0300
committerZoltan Varga <vargaz@gmail.com>2019-12-09 16:55:44 +0300
commit2befdcfa52c76584d750092ced62c1ea8bc570f8 (patch)
tree49f9ce8bad5b82e197ee3d787a849d77557b1fa0 /scripts/ci
parent1462208991862fa795d36ec5df52eab938a4242e (diff)
[netcore] Enable more tests for interpreter and llvm on CI (#17957)
* Enable more tests * fix build? * forward XUNIT_MONO_ENV_OPTIONS * increase timeout * ignore some tests for interpreter * ignore more tests * move interp specific issues to a separate rsp * fix CI * fix CI * undo build.sh chmod * revert chmod for xunit-summary-py * improve xunit summary * Ignore the whole System.Net.Tests namespace * Ignore System.Text.Json * disable the whole BinaryFormatterTests * Disable System.Net.Http.Functional.Tests
Diffstat (limited to 'scripts/ci')
-rw-r--r--scripts/ci/pipeline-netcore-runtime.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ci/pipeline-netcore-runtime.yml b/scripts/ci/pipeline-netcore-runtime.yml
index 22fa6356b79..78afb1111c0 100644
--- a/scripts/ci/pipeline-netcore-runtime.yml
+++ b/scripts/ci/pipeline-netcore-runtime.yml
@@ -119,8 +119,9 @@ stages:
- bash: |
if [ $(llvm) = true ]; then
make -C netcore run-tests-corefx-System.Runtime.Tests USE_TIMEOUT=1 XUNIT_MONO_ENV_OPTIONS="--llvm"
+ make -C netcore run-tests-corefx-System.Runtime.Extensions.Tests USE_TIMEOUT=1 XUNIT_MONO_ENV_OPTIONS="--llvm"
elif [ $(interpreter) = true ]; then
- make -C netcore run-tests-corefx-System.Runtime.Tests USE_TIMEOUT=1 XUNIT_MONO_ENV_OPTIONS="--interpreter" XUNIT_ARGS="-parallel none"
+ ./netcore/build.sh --ci --test --skipnative --skipmscorlib --interpreter
else
./netcore/build.sh --ci --test --skipnative --skipmscorlib
fi