Exclude segfaulting test from runtests.jl

pull/29/head
Matti Pastell 2015-01-02 13:44:53 +02:00
parent 5ec60597b0
commit b2e2c890db
1 changed files with 8 additions and 6 deletions

View File

@ -2,16 +2,18 @@ using Weave
using Base.Test
include("chunk_options.jl")
#include("pyplot_formats.jl") cause segfaults, but OK if run by itself
weave("documents/gadfly_markdown_test.jmd", doctype="github",plotlib="gadfly", informat="markdown")
result = readall(open("documents/gadfly_markdown_test.md"))
ref = readall(open("documents/gadfly_markdown_test_ref.md"))
@test result == ref
#Test winston only for 0.3
if VERSION.minor == 3
include("winston_formats.jl")
end
include("gadfly_formats.jl")
#These segfault on Travis, but run without problems on my Fedora 21
# You should run both files wjem testing
#include("winston_formats.jl")
#include("pyplot_formats.jl") cause segfaults, but OK if run by itself