run-tests: do not fail on empty tsttest file stable
authorSimon Heimberg <simohe@besonet.ch>
Wed, 24 Oct 2012 23:09:31 +0200
branchstable
changeset 1210 02c4186c3aca
parent 1208 9bd54c35af97
child 1211 fa2a1c11ae4b
child 1212 2ea362720f72
run-tests: do not fail on empty tsttest file Initialize n for not failing on empty tsttest files. [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Tue Jan 29 20:03:51 2013 +0100
+++ b/tests/run-tests.py	Wed Oct 24 23:09:31 2012 +0200
@@ -622,6 +622,7 @@
         script.append('set -x\n')
     if os.getenv('MSYSTEM'):
         script.append('alias pwd="pwd -W"\n')
+    n = 0
     for n, l in enumerate(t):
         if not l.endswith('\n'):
             l += '\n'