[wasm] Disable tests that crashes the runtime for now
authorRodrigo Kumpera <kumpera@gmail.com>
Tue, 12 Sep 2017 23:12:58 +0000 (16:12 -0700)
committerRodrigo Kumpera <kumpera@gmail.com>
Tue, 12 Sep 2017 23:12:58 +0000 (16:12 -0700)
mono/mini/aot-tests.cs

index 7f3dafea5c602ab31d1db9590fca9253b7f2a265..fef0cc81caed2ddc704de29e0fe09c774c04186d 100644 (file)
@@ -26,6 +26,7 @@ class Tests
 
        public delegate void ArrayDelegate (int[,] arr);
 
+       [Category ("!WASM")] //Requires a working threadpool
        static int test_0_array_delegate_full_aot () {
                ArrayDelegate d = delegate (int[,] arr) {
                };
@@ -260,6 +261,7 @@ class Tests
 
        [Category ("DYNCALL")]
        [Category ("!FULLAOT-AMD64")]
+       [Category ("!WASM")] //known bug in the interpreter
        public static int test_0_dyncall_nullable () {
                int? v;
 
@@ -410,6 +412,7 @@ class Tests
 
        [Category ("DYNCALL")]
        [Category ("!FULLAOT-AMD64")]
+       [Category ("!WASM")] //known bug in the interpreter
        public static int test_0_large_nullable_invoke () {
                var s = new LargeStruct () { a = 1, b = 2, c = 3, d = 4 };