[coreclr-tests] Disable a test that fails verification.
authorRodrigo Kumpera <kumpera@gmail.com>
Mon, 4 Jul 2016 18:08:54 +0000 (14:08 -0400)
committerRodrigo Kumpera <kumpera@gmail.com>
Mon, 4 Jul 2016 18:08:54 +0000 (14:08 -0400)
acceptance-tests/coreclr.mk

index 74534d63efd8758512d3e48ac4c65ae9821b0cf7..1f4be3d1e8fbc9cefb15d72648b5068298d01356 100644 (file)
@@ -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)