diff options
Diffstat (limited to 'test/Scanner/exception.py')
-rw-r--r-- | test/Scanner/exception.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/Scanner/exception.py b/test/Scanner/exception.py index de0a795..1a14152 100644 --- a/test/Scanner/exception.py +++ b/test/Scanner/exception.py @@ -83,23 +83,23 @@ env.Cat('bar', bar_in) test.write('foo.k', """foo.k 1 line 1 -include xxx.k -include yyy.k +include xxx +include yyy foo.k 1 line 4 """) test.write('bar.in', -"""include yyy.k +"""include yyy bar.in 1 line 2 bar.in 1 line 3 -include zzz.k +include zzz """) -test.write('xxx.k', "xxx 1\n") +test.write('xxx', "xxx 1\n") -test.write('yyy.k', "exception yyy 1\n") +test.write('yyy', "exception yyy 1\n") -test.write('zzz.k', "zzz 1\n") +test.write('zzz', "zzz 1\n") test.run(arguments = '.', status = 2, |