summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-07-06 11:46:17 (GMT)
committerSteven Knight <knight@baldmt.com>2001-07-06 11:46:17 (GMT)
commit11ad88ce6d9165bebc6752a120bce4d962368bbf (patch)
tree231b89344132f163250b4799a8aa69628dd0bb35 /test
downloadSCons-11ad88ce6d9165bebc6752a120bce4d962368bbf.zip
SCons-11ad88ce6d9165bebc6752a120bce4d962368bbf.tar.gz
SCons-11ad88ce6d9165bebc6752a120bce4d962368bbf.tar.bz2
Initial revisionstart
Diffstat (limited to 'test')
-rw-r--r--test/.aeignore3
-rw-r--r--test/t0001.t30
-rw-r--r--test/t0010.py29
3 files changed, 62 insertions, 0 deletions
diff --git a/test/.aeignore b/test/.aeignore
new file mode 100644
index 0000000..872e8be
--- /dev/null
+++ b/test/.aeignore
@@ -0,0 +1,3 @@
+*,D
+.*.swp
+.consign
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()
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()