skip sdl/opengl/fsmonitor tests when unavailable

This commit is contained in:
Aman Gupta
2015-10-08 10:58:52 -07:00
parent 5bb0820596
commit a1750bd431

View File

@@ -105,6 +105,12 @@ proc callCompiler(cmdTemplate, filename, options: string,
elif suc =~ pegSuccess:
result.err = reSuccess
if result.err == reNimcCrash and
("Your platform is not supported" in result.msg or
"cannot open 'sdl'" in result.msg or
"cannot open 'opengl'" in result.msg):
result.err = reIgnored
proc callCCompiler(cmdTemplate, filename, options: string,
target: TTarget): TSpec =
let c = parseCmdLine(cmdTemplate % ["target", targetToCmd[target],