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-07-11 22:42:14 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-11 22:42:14 +0300
commit792bfbff913f80a663ab086c71ac5a238e64fffa (patch)
tree09158b51ef57f087cb47363539200fcb6f191913 /netcore/build.sh
parent972cd6536510d3174e057393b50998c610cb2473 (diff)
[netcore] Do not inline ThrowHelpers, fix SkipFrames handling. (#15607)
1) Do not inline ThrowHelpers (e.g. `static void ThrowException() => throw new Exception();`) 2) `get_trace` incorrectly handles `skip` argument 3) fix broken ci (`dl-test-assets.py` is not python2 compatible any more) Fixes https://github.com/mono/mono/issues/15182 Fixes https://github.com/mono/mono/issues/15188
Diffstat (limited to 'netcore/build.sh')
-rwxr-xr-xnetcore/build.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/netcore/build.sh b/netcore/build.sh
index b9307479485..bcb4d0c4c17 100755
--- a/netcore/build.sh
+++ b/netcore/build.sh
@@ -108,6 +108,7 @@ fi
# run all xunit tests
if [ "$test" = "true" ]; then
+ make update-tests-corefx
for testdir in corefx/tests/extracted/*; do
../scripts/ci/./run-step.sh --label=$(basename $testdir) --timeout=15m make run-tests-corefx-$(basename $testdir)
done