[interpreter] add arrays.cs to richeck target
authorBernhard Urban <bernhard.urban@xamarin.com>
Mon, 27 Feb 2017 16:55:54 +0000 (17:55 +0100)
committerBernhard Urban <bernhard.urban@xamarin.com>
Tue, 28 Feb 2017 21:59:28 +0000 (22:59 +0100)
mono/mini/Makefile.am.in
mono/mini/arrays.cs

index 59888bbc64dc722b2d29ab611d8a06f6ee1a6d7b..a76cd6ac6ee5638d1271cd4af4cb8c9b8e5ad313 100755 (executable)
@@ -534,8 +534,9 @@ iregtests = \
        basic-float.exe \
        basic-long.exe \
        basic-calls.exe \
-       generics.exe \
-       objects.exe
+       objects.exe \
+       arrays.exe \
+       generics.exe
 
 if X86
 arch_sources = $(x86_sources)
index 00a3c6b901f86a6b0c92e4b9a2993dbb447f3e78..b3002716e46085da306e63dfef31888d1354d220 100644 (file)
@@ -318,6 +318,7 @@ class Tests
                return 0;
        }
 
+       [Category ("!INTERPRETER")]
        public static int test_0_multi_dimension_arrays () {
                int sum;
 
@@ -548,6 +549,7 @@ class Tests
                return 0;
        }
 
+       [Category ("!INTERPRETER")]
        public static int test_0_multidym_array_with_negative_lower_bound () {
                int[,] x = (int[,]) Array.CreateInstance(typeof (int), new int[] { 2, 2 }, new int[] { -2, -3 });
 
@@ -778,6 +780,7 @@ class Tests
        }
 
        // #13544
+       [Category ("!INTERPRETER")]
        public static int test_0_newarr_ovf () {
                if (!alloc_long (5000000000))
                        return 1;