Generalize the hard-coded line numbers in test/errors.py.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 9 Sep 2001 14:02:57 +0000 (14:02 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 9 Sep 2001 14:02:57 +0000 (14:02 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@32 fdb21ef1-2011-0410-befe-b5e4ea1792b1

test/errors.py

index d4b8d65d092abfad1a6557fd61004fa97674bb6a..04eac9e569556f8cb9febde05922a92148d2f985 100644 (file)
@@ -46,11 +46,11 @@ raise InternalError, 'error inside'
 """)
 test.run(chdir = '.', arguments='-f SConstruct3')
 expect = r"""Traceback \((most recent call|innermost) last\):
-  File "%s", line 163, in \?
+  File "%s", line \d+, in \?
     main\(\)
-  File "%s", line 153, in main
+  File "%s", line \d+, in main
     execfile\(file\)
-  File "SConstruct3", line 2, in \?
+  File "SConstruct3", line \d+, in \?
     raise InternalError, 'error inside'
 InternalError: error inside
 """ % (sconspath, sconspath)