diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-31 03:47:18 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-31 03:47:18 (GMT) |
commit | 00c3ada748b164ecf909727fa81f521dde72fda9 (patch) | |
tree | 123feebbeb8fd1ea7c4dbc0de3cd81b0e5f6f8ad /test/builderrors.py | |
parent | ae1737265e92978dd851292340d21af6e2269196 (diff) | |
download | SCons-00c3ada748b164ecf909727fa81f521dde72fda9.zip SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.bz2 |
Make the (s) and variables upper-case.
Diffstat (limited to 'test/builderrors.py')
-rw-r--r-- | test/builderrors.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/builderrors.py b/test/builderrors.py index 769215a..c76568e 100644 --- a/test/builderrors.py +++ b/test/builderrors.py @@ -46,8 +46,8 @@ sys.exit(exitval) """) test.write(['one', 'SConstruct'], """ -B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $target $sources') -B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $target $sources') +B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $TARGET $SOURCES') +B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $TARGET $SOURCES') env = Environment(BUILDERS = [B0, B1]) env.B1(target = 'f1.out', source = 'f1.in') env.B0(target = 'f2.out', source = 'f2.in') @@ -66,8 +66,8 @@ test.fail_test(os.path.exists(test.workpath('f2.out'))) test.fail_test(os.path.exists(test.workpath('f3.out'))) test.write(['two', 'SConstruct'], """ -B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $target $sources') -B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $target $sources') +B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $TARGET $SOURCES') +B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $TARGET $SOURCES') env = Environment(BUILDERS = [B0, B1]) env.B0(target = 'f1.out', source = 'f1.in') env.B1(target = 'f2.out', source = 'f2.in') @@ -86,8 +86,8 @@ test.fail_test(os.path.exists(test.workpath('f2.out'))) test.fail_test(os.path.exists(test.workpath('f3.out'))) test.write(['three', 'SConstruct'], """ -B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $target $sources') -B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $target $sources') +B0 = Builder(name = 'B0', action = r'%s ../build.py 0 $TARGET $SOURCES') +B1 = Builder(name = 'B1', action = r'%s ../build.py 1 $TARGET $SOURCES') env = Environment(BUILDERS = [B0, B1]) env.B0(target = 'f1.out', source = 'f1.in') env.B0(target = 'f2.out', source = 'f2.in') |