summaryrefslogtreecommitdiff
path: root/test/exitfns.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/exitfns.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/exitfns.py')
-rw-r--r--test/exitfns.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/exitfns.py b/test/exitfns.py
index 35fd9826..8a9e01eb 100644
--- a/test/exitfns.py
+++ b/test/exitfns.py
@@ -46,7 +46,8 @@ register(x3, "no kwd args")
"""
-expected_output = """running x3('no kwd args', kwd=None)
+expected_output = """scons: "." is up to date.
+running x3('no kwd args', kwd=None)
running x3(5, kwd='bar')
running x2(12)
running x1
@@ -55,7 +56,7 @@ running x3('no kwd args', kwd=None)
test.write('SConstruct', sconstruct)
-test.run(arguments='-f SConstruct', stdout = expected_output)
+test.run(arguments='-f SConstruct .', stdout = expected_output)
test.write('SConstruct', """import sys
def f():
@@ -64,6 +65,6 @@ def f():
sys.exitfunc = f
""" + sconstruct)
-test.run(arguments='-f SConstruct', stdout = expected_output)
+test.run(arguments='-f SConstruct .', stdout = expected_output)
test.pass_test()