summaryrefslogtreecommitdiffstats
path: root/test/Configure/Builder-call.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Configure/Builder-call.py')
-rw-r--r--test/Configure/Builder-call.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Configure/Builder-call.py b/test/Configure/Builder-call.py
index a6f2fa5..1ce114c 100644
--- a/test/Configure/Builder-call.py
+++ b/test/Configure/Builder-call.py
@@ -35,7 +35,7 @@ _python_ = TestSCons._python_
test = TestSCons.TestSCons()
-test.write('cmd.py', r"""
+test.write('mycommand.py', r"""
import sys
sys.stderr.write( 'Hello World on stderr\n' )
sys.stdout.write( 'Hello World on stdout\n' )
@@ -48,7 +48,7 @@ def CustomTest(*args):
return 0
conf = env.Configure(custom_tests = {'MyTest' : CustomTest})
if not conf.MyTest():
- env.Command("hello", [], '%(_python_)s cmd.py $TARGET')
+ env.Command("hello", [], '%(_python_)s mycommand.py $TARGET')
env = conf.Finish()
""" % locals())