summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-04-08 16:20:55 -0700
committerEric Anholt <eric@anholt.net>2013-04-08 16:21:24 -0700
commit558ac050d031199864105ab7906e6cc6d62509fc (patch)
treec363ffadad4f0e5e56840dc9539af0f3c7ec20d4
parent2dd58f376555c3813c24a612dbd979a004a756a6 (diff)
Fix output when a shader fails to compile.
-rwxr-xr-xrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index c8f5d11..4c12f2d 100755
--- a/run.py
+++ b/run.py
@@ -58,7 +58,7 @@ def run_test(filename):
except KeyboardInterrupt:
exit(1)
except:
- return filename + " FAIL"
+ return filename + " FAIL\n"
with open(filename + '.out', 'w') as file:
file.write(results)