summaryrefslogtreecommitdiffstats
path: root/test/M4
diff options
context:
space:
mode:
Diffstat (limited to 'test/M4')
-rw-r--r--test/M4/M4.py8
-rw-r--r--test/M4/M4COM.py6
-rw-r--r--test/M4/M4COMSTR.py6
3 files changed, 10 insertions, 10 deletions
diff --git a/test/M4/M4.py b/test/M4/M4.py
index bf56e74..859c57b 100644
--- a/test/M4/M4.py
+++ b/test/M4/M4.py
@@ -34,7 +34,7 @@ import string
import sys
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,9 +49,9 @@ sys.exit(0)
""")
test.write('SConstruct', """
-env = Environment(M4 = r'%s mym4.py', tools=['default', 'm4'])
+env = Environment(M4 = r'%(_python_)s mym4.py', tools=['default', 'm4'])
env.M4(target = 'aaa.x', source = 'aaa.x.m4')
-""" % python)
+""" % locals())
test.write('aaa.x.m4', """\
line 1
@@ -80,7 +80,7 @@ os.system(string.join(sys.argv[1:], " "))
test.write('SConstruct', """
foo = Environment(M4=r'%(m4)s', M4FLAGS='-DFFF=fff')
m4 = foo.Dictionary('M4')
-bar = Environment(M4 = r'%(python)s wrapper.py ' + m4, M4FLAGS='-DBBB=bbb')
+bar = Environment(M4 = r'%(_python_)s wrapper.py ' + m4, M4FLAGS='-DBBB=bbb')
foo.M4(target = 'foo.x', source = 'foo.x.m4')
bar.M4(target = 'bar', source = 'bar.m4')
""" % locals())
diff --git a/test/M4/M4COM.py b/test/M4/M4COM.py
index d1c53b4..8c36d86 100644
--- a/test/M4/M4COM.py
+++ b/test/M4/M4COM.py
@@ -30,7 +30,7 @@ Test the ability to configure the $M4COM construction variable.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -48,9 +48,9 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'm4'],
- M4COM = r'%s mym4.py $TARGET $SOURCES')
+ M4COM = r'%(_python_)s mym4.py $TARGET $SOURCES')
env.M4(target = 'aaa.out', source = 'aaa.in')
-""" % python)
+""" % locals())
test.write('aaa.in', "aaa.in\n/*m4*/\n")
diff --git a/test/M4/M4COMSTR.py b/test/M4/M4COMSTR.py
index 0e14495..a9e91e6 100644
--- a/test/M4/M4COMSTR.py
+++ b/test/M4/M4COMSTR.py
@@ -31,7 +31,7 @@ the displayed string when m4 is called.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,10 +49,10 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'm4'],
- M4COM = r'%s mym4.py $TARGET $SOURCES',
+ M4COM = r'%(_python_)s mym4.py $TARGET $SOURCES',
M4COMSTR = 'M4ing $TARGET from $SOURCE')
env.M4(target = 'aaa.out', source = 'aaa.in')
-""" % python)
+""" % locals())
test.write('aaa.in', "aaa.in\n/*m4*/\n")