summaryrefslogtreecommitdiffstats
path: root/test/t0010.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t0010.py')
-rw-r--r--test/t0010.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/t0010.py b/test/t0010.py
new file mode 100644
index 0000000..9d00a7f
--- /dev/null
+++ b/test/t0010.py
@@ -0,0 +1,29 @@
+#!/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', """
+env = Environment()
+env.Program(target = 'foo', source = 'foo.c')
+""")
+
+test.write('foo.c', """
+int
+main(int argc, char *argv[])
+{
+ printf("foo.c\n");
+ exit (0);
+}
+""")
+
+test.run(chdir = '.', arguments = 'foo')
+
+test.run(program = test.workpath('foo'))
+
+test.fail_test(test.stdout() != "foo.c\n")
+
+test.pass_test()