Skip to content

Commit 0b8ec4a

Browse files
committed
Fix 0.7 test: turn off SDL tests
1 parent 451461c commit 0b8ec4a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/ApplicationBuilder.jl

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using Base.Test
1+
using Compat
2+
3+
using Compat.Test
24
using ApplicationBuilder
35

46
const julia_v07 = VERSION > v"0.7-"
@@ -64,6 +66,8 @@ macro testBundledSuccessfully(expr...)
6466
testBundledSuccessfully_macro(expr...)
6567
end
6668

69+
if !julia_v07 # Blink and SDL don't yet work on julia v0.7.
70+
6771
@testset "sdl: simple example of binary dependencies" begin
6872
@test 0 == include("build_examples/sdl.jl")
6973
# Test that it runs correctly
@@ -72,7 +76,6 @@ end
7276
@test @testBundledSuccessfully(`$builddir/HelloSDL2.app/Contents/MacOS/sdl`, 3)
7377
end
7478

75-
if !julia_v07 # Blink doesn't yet work on julia v0.7.
7679
@testset "HelloBlink.app" begin
7780
@test 0 == include("build_examples/blink.jl")
7881

0 commit comments

Comments
 (0)