summaryrefslogtreecommitdiff
path: root/test/option--C.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-08-31 04:58:09 +0000
committerSteven Knight <knight@baldmt.com>2002-08-31 04:58:09 +0000
commitda5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07 (patch)
tree09923409e3e511b6d18e0323209f34cda29c2ca7 /test/option--C.py
parentd8b4ea0c9adfb77244f488c338d290c863f2b8b1 (diff)
downloadscons-da5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07.tar.gz
Provide a message if there are no command-line targets specified and no Default() targets.
Diffstat (limited to 'test/option--C.py')
-rw-r--r--test/option--C.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/test/option--C.py b/test/option--C.py
index 8fbb457f..5bbbd31a 100644
--- a/test/option--C.py
+++ b/test/option--C.py
@@ -65,19 +65,20 @@ import os
print GetBuildPath('..')
""")
-test.run(arguments = '-C sub',
- stdout = "%s\n" % wpath)
+test.run(arguments = '-C sub .',
+ stdout = '%s\nscons: "." is up to date.\n' % wpath)
-test.run(arguments = '-C sub -C dir',
- stdout = "%s\n" % wpath_sub)
+test.run(arguments = '-C sub -C dir .',
+ stdout = '%s\nscons: "." is up to date.\n' % wpath_sub)
-test.run(stdout = "SConstruct %s\n" % wpath)
+test.run(arguments = ".",
+ stdout = 'SConstruct %s\nscons: "." is up to date.\n' % wpath)
-test.run(arguments = '--directory=sub/dir',
- stdout = "%s\n" % wpath_sub)
+test.run(arguments = '--directory=sub/dir .',
+ stdout = '%s\nscons: "." is up to date.\n' % wpath_sub)
-test.run(arguments = '-C %s -C %s' % (wpath_sub_dir, wpath_sub),
- stdout = "%s\n" % wpath)
+test.run(arguments = '-C %s -C %s .' % (wpath_sub_dir, wpath_sub),
+ stdout = '%s\nscons: "." is up to date.\n' % wpath)
test.pass_test()