diff options
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') |