We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 451461c commit 0b8ec4aCopy full SHA for 0b8ec4a
test/ApplicationBuilder.jl
@@ -1,4 +1,6 @@
1
-using Base.Test
+using Compat
2
+
3
+using Compat.Test
4
using ApplicationBuilder
5
6
const julia_v07 = VERSION > v"0.7-"
@@ -64,6 +66,8 @@ macro testBundledSuccessfully(expr...)
64
66
testBundledSuccessfully_macro(expr...)
65
67
end
68
69
+if !julia_v07 # Blink and SDL don't yet work on julia v0.7.
70
71
@testset "sdl: simple example of binary dependencies" begin
72
@test 0 == include("build_examples/sdl.jl")
73
# Test that it runs correctly
@@ -72,7 +76,6 @@ end
76
@test @testBundledSuccessfully(`$builddir/HelloSDL2.app/Contents/MacOS/sdl`, 3)
77
74
78
75
-if !julia_v07 # Blink doesn't yet work on julia v0.7.
79
@testset "HelloBlink.app" begin
80
@test 0 == include("build_examples/blink.jl")
81
0 commit comments