summaryrefslogtreecommitdiffstats
path: root/test/option-u.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option-u.py')
-rw-r--r--test/option-u.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/option-u.py b/test/option-u.py
new file mode 100644
index 0000000..8574332
--- /dev/null
+++ b/test/option-u.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+__revision__ = "test/option-u.py __REVISION__ __DATE__ __DEVELOPER__"
+
+import TestCmd
+import string
+import sys
+
+test = TestCmd.TestCmd(program = 'scons.py',
+ workdir = '',
+ interpreter = 'python')
+
+test.write('SConstruct', "")
+
+test.run(chdir = '.', arguments = '-u')
+
+test.fail_test(test.stderr() !=
+ "Warning: the -u option is not yet implemented\n")
+
+test.pass_test()
+