Compiletest for non-Windows systems

master
Peter Šurda 6 years ago
parent 085e335969
commit 2654b61bd7
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87

@ -16,5 +16,8 @@ for filename in matches:
try:
compile(source, filename, 'exec')
except Exception as e:
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
sys.exit(1)
if 'win' in sys.platform:
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
else:
print "Exception in %s: %s" % (filename, traceback.format_exc())
sys.exit(1)

Loading…
Cancel
Save