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:
authorRodrigo Kumpera <kumpera@gmail.com>2016-07-04 21:08:54 +0300
committerRodrigo Kumpera <kumpera@gmail.com>2016-07-04 21:08:54 +0300
commit113f0c4a18a0c96564815a49c63224194da72bcb (patch)
tree86cb474fa75fefa7766cf7cbb9ae5da9c4e94c3c /acceptance-tests
parent2b7b2f6a999459a549d520aeca4d435b7bd5d6e7 (diff)
[coreclr-tests] Disable a test that fails verification.
Diffstat (limited to 'acceptance-tests')
-rw-r--r--acceptance-tests/coreclr.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/acceptance-tests/coreclr.mk b/acceptance-tests/coreclr.mk
index 74534d63efd..1f4be3d1e8f 100644
--- a/acceptance-tests/coreclr.mk
+++ b/acceptance-tests/coreclr.mk
@@ -4092,7 +4092,6 @@ CORECLR_TEST_IL_SRC = \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/importer/volatilldind.il \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/importer/volatilstind.il \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/arrgetlen.il \
- $(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/lcliimpl.il \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/ldsshrstsfld.il \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/ldvirtftncalli.il \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/ovfldiv2.il \
@@ -5130,7 +5129,12 @@ CORECLR_DISABLED_TEST_IL_SRC += \
# Bad test that tries to implicit cast from bytef to int32
CORECLR_DISABLED_TEST_IL_SRC += \
$(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/subbyref.il
-
+
+# Bad test that tries to assign a byref to a class to a byref of an interface that class implements
+# This is unsafe because the byref is mutable and would allow you to store the wrong type on that cell.
+CORECLR_DISABLED_TEST_IL_SRC += \
+ $(CORECLR_PATH)/tests/src/JIT/Directed/coverage/oldtests/lcliimpl.il
+
# find all CoreCLR *.il test files that aren't mentioned in this file
CORECLR_DEFINED_IL_SRC = $(CORECLR_TEST_IL_SRC) $(CORECLR_DISABLED_TEST_IL_SRC)