summaryrefslogtreecommitdiff
path: root/test/Execute.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-03-16 07:16:02 +0000
committerSteven Knight <knight@baldmt.com>2004-03-16 07:16:02 +0000
commit726790558e9e9b22ec0897ceeae5b83144197fe5 (patch)
tree391bd4bdacc955aade62b680bb213f81a0f59726 /test/Execute.py
parentd337499882865fcee240d284869525b17aed0d24 (diff)
downloadscons-726790558e9e9b22ec0897ceeae5b83144197fe5.tar.gz
Fix use of MSVS_IGNORE_IDE_PATHS. Win32 fixes for various tests.
Diffstat (limited to 'test/Execute.py')
-rw-r--r--test/Execute.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Execute.py b/test/Execute.py
index 6942617c..2637a6ac 100644
--- a/test/Execute.py
+++ b/test/Execute.py
@@ -34,7 +34,7 @@ python = TestSCons.python
test = TestSCons.TestSCons()
-test.write('copy.py', """\
+test.write('my_copy.py', """\
import sys
open(sys.argv[2], 'wb').write(open(sys.argv[1], 'rb').read())
try:
@@ -45,11 +45,11 @@ sys.exit(exitval)
""")
test.write('SConstruct', """\
-Execute("%s copy.py a.in a.out")
-Execute(Action("%s copy.py b.in b.out"))
-env = Environment(COPY = 'copy.py')
-env.Execute("%s copy.py c.in c.out")
-env.Execute(Action("%s copy.py d.in d.out"))
+Execute("%s my_copy.py a.in a.out")
+Execute(Action("%s my_copy.py b.in b.out"))
+env = Environment(COPY = 'my_copy.py')
+env.Execute("%s my_copy.py c.in c.out")
+env.Execute(Action("%s my_copy.py d.in d.out"))
v = env.Execute("%s $COPY e.in e.out")
assert v == 0, v
v = env.Execute(Action("%s $COPY f.in f.out"))