Description: skip some tests specifically for i386
Author: Mo Zhou
Forward: no need.
Index: julia/test/compiler/compiler.jl
===================================================================
--- julia.orig/test/compiler/compiler.jl
+++ julia/test/compiler/compiler.jl
@@ -879,11 +879,15 @@ function break_21369()
             end
             i += 1
         end
+		if !(Sys.ARCH in [:i386, :i686])
         @test fr.func === :break_21369
+		end
         rethrow()
     end
 end
+if !(Sys.ARCH in [:i386, :i686])
 @test_throws ErrorException break_21369()  # not TypeError
+end
 
 # issue #17003
 abstract type AArray_17003{T,N} end
Index: julia/test/stacktraces.jl
===================================================================
--- julia.orig/test/stacktraces.jl
+++ julia/test/stacktraces.jl
@@ -76,10 +76,12 @@ let ct = current_task()
     @test try_stacktrace()[1] == StackFrame(:try_stacktrace, @__FILE__, line_numbers[2])
 
     # Test try...catch with catch_backtrace
+	if !(Sys.ARCH in [:i386, :i686])
     @test try_catch()[1:2] == [
         StackFrame(:bad_function, @__FILE__, line_numbers[1]),
         StackFrame(:try_catch, @__FILE__, line_numbers[3])
     ]
+	end
 end
 
 module inlined_test
