Merge pull request #5438 from cherusker/cherusker-2017-08-24-complete-prototype
[mono.git] / mono / mini / exceptions.cs
index 3251985e4d702f02e7b58499dc727b99bc4949f2..aa5ca277ac544e5e57bdeffbbfd454a0c95de9ab 100644 (file)
@@ -2869,6 +2869,7 @@ class Tests
                }
        }
 
+       [Category ("!BITCODE")]
        public static int test_1_basic_filter_catch () {
                try {
                        MyException e = new MyException ("");
@@ -2880,6 +2881,7 @@ class Tests
                return 0;
        }
 
+       [Category ("!BITCODE")]
        public static int test_1234_complicated_filter_catch () {
                string res = "init";
                try {
@@ -2921,6 +2923,7 @@ class Tests
     [MethodImpl( MethodImplOptions.NoInlining )]
     private static bool ExceptionFilter( byte x, FooStruct item ) => true;
 
+       [Category ("!BITCODE")]
        public static int test_0_filter_caller_area () {
         try {
             throw new Exception();