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 <bernhard.urban@xamarin.com>2017-02-27 19:55:54 +0300
committerBernhard Urban <bernhard.urban@xamarin.com>2017-03-01 00:59:28 +0300
commit9c630f56cee29593c04a3a562b381a410a148b93 (patch)
treedbcb269204d1479ba62a139fee954c8d6e2de731
parent57172b4f1950a30060a2adefc935149a246f44f7 (diff)
[interpreter] add arrays.cs to richeck target
-rwxr-xr-xmono/mini/Makefile.am.in5
-rw-r--r--mono/mini/arrays.cs3
2 files changed, 6 insertions, 2 deletions
diff --git a/mono/mini/Makefile.am.in b/mono/mini/Makefile.am.in
index 59888bbc64d..a76cd6ac6ee 100755
--- a/mono/mini/Makefile.am.in
+++ b/mono/mini/Makefile.am.in
@@ -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)
diff --git a/mono/mini/arrays.cs b/mono/mini/arrays.cs
index 00a3c6b901f..b3002716e46 100644
--- a/mono/mini/arrays.cs
+++ b/mono/mini/arrays.cs
@@ -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;