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:
authorBernhard Urban-Forster <lewurm@gmail.com>2020-04-28 21:40:43 +0300
committerBernhard Urban-Forster <lewurm@gmail.com>2020-04-28 21:40:43 +0300
commit37a588097e075f86918dcfc50d86d56fb595ae2f (patch)
treee68c0479e9b2193236a2de9b169b5feefdfcf7e3
parent08db036f8e01e80ec0a75849001094414888eeaa (diff)
[enc] add list of disabled tests
-rw-r--r--mono/tests/enc/Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/mono/tests/enc/Makefile.am b/mono/tests/enc/Makefile.am
index 30d1066618b..4df272a348f 100644
--- a/mono/tests/enc/Makefile.am
+++ b/mono/tests/enc/Makefile.am
@@ -1,6 +1,11 @@
include ../common_mixed.mk
ROSLYNILDIFF ?=/Users/lewurm/work/roslynildiff/bin/Debug/roslynildiff.exe
+DISABLED_TESTS := \
+ AddClass.dll \
+ AddStaticField.dll \
+ LambdaFunc.dll
+
TESTS_REGULAR := \
AddClass.dll \
AddStaticField.dll \
@@ -14,13 +19,15 @@ TESTS_REGULAR := \
TypeTokenSwap.dll \
UserStringSwap.dll
+TESTS_ACTUAL=$(filter-out $(DISABLED_TESTS),$(TESTS_REGULAR))
+
# DEBUG_FLAGS=MONO_LOG_MASK=metadata-update MONO_LOG_LEVEL=debug MONO_VERBOSE_METHOD=DiffTestMethod1
check: $(TESTS_REGULAR)
@failed=0; \
passed=0; \
failed_tests=""; \
- for i in $(TESTS_REGULAR); do \
+ for i in $(TESTS_ACTUAL); do \
echo "======== $$i start ======== "; \
if $(DEBUG_FLAGS) ../../mini/mono $(TEST_RUNTIME_ARGS) --interp=-inline $$i ; \
then \