summaryrefslogtreecommitdiffstats
path: root/test/t0001.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/t0001.t')
-rw-r--r--test/t0001.t30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/t0001.t b/test/t0001.t
new file mode 100644
index 0000000..8f9bed3
--- /dev/null
+++ b/test/t0001.t
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+
+__revision__ = "test/t0001.t __REVISION__ __DATE__ __DEVELOPER__"
+
+from TestCmd import TestCmd
+
+test = TestCmd(program = 'scons.py', workdir = '', interpreter = 'python')
+
+test.write('SConstruct', """
+import os
+print "SConstruct", os.getcwd()
+Conscript('SConscript')
+""")
+
+# XXX I THINK THEY SHOULD HAVE TO RE-IMPORT OS HERE,
+# WHICH THEY DO FOR THE SECOND TEST BELOW, BUT NOT THE FIRST...
+test.write('SConscript', """
+import os
+print "SConscript " + os.getcwd()
+""")
+
+wpath = test.workpath()
+
+test.run(chdir = '.')
+test.fail_test(test.stdout() != ("SConstruct %s\nSConscript %s\n" % (wpath, wpath)))
+
+test.run(chdir = '.', arguments = '-f SConscript')
+test.fail_test(test.stdout() != ("SConscript %s\n" % wpath))
+
+test.pass_test()