summaryrefslogtreecommitdiffstats
path: root/test/option-c.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-04-27 03:41:27 (GMT)
committerSteven Knight <knight@baldmt.com>2003-04-27 03:41:27 (GMT)
commit98792e70711bb39b7862e4427c09787aab691631 (patch)
treebb3d460515d4d671900fa6cb5582d429de503e40 /test/option-c.py
parenta925fbfbbecd978b6275ba0592e3bd21b0bd7781 (diff)
downloadSCons-98792e70711bb39b7862e4427c09787aab691631.zip
SCons-98792e70711bb39b7862e4427c09787aab691631.tar.gz
SCons-98792e70711bb39b7862e4427c09787aab691631.tar.bz2
Follow-up test portability fixes for IRIX. (Chad Austin)
Diffstat (limited to 'test/option-c.py')
-rw-r--r--test/option-c.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option-c.py b/test/option-c.py
index 6501d75..d545b10 100644
--- a/test/option-c.py
+++ b/test/option-c.py
@@ -193,7 +193,7 @@ Removed foo3.out
Removed %s
Removed %s
Removed directory subd
-""" % (os.path.join('subd','foon.in'), os.path.join('subd', 'SConscript')))
+""" % (os.path.join('subd', 'SConscript'), os.path.join('subd','foon.in')))
test.run(arguments = '-c -n .', stdout=expect)
expect = test.wrap_stdout("""Removed foo1.out
@@ -202,7 +202,7 @@ Removed foo3.out
Removed %s
Removed %s
Removed directory subd
-""" % (os.path.join('subd','foon.in'), os.path.join('subd', 'SConscript')))
+""" % (os.path.join('subd','SConscript'), os.path.join('subd', 'foon.in')))
test.run(arguments = '-c .', stdout=expect)
test.fail_test(os.path.exists(test.workpath('subdir', 'foon.in')))
test.fail_test(os.path.exists(test.workpath('subdir')))