Remove the recently-removed _scons_sets15.py from MANIFEST.in.
[scons.git] / test / SPAWN.py
index 2a3632eb5e227d8e862e2f166033118792a702cf..68025244abe0a3f9337ccd48d62f4aa02f1b10f9 100644 (file)
@@ -44,15 +44,14 @@ ofp.close()
 
 test.write('SConstruct', """
 import os
-import string
 import sys
 def my_spawn1(sh, escape, cmd, args, env):
-    s = string.join(args + ['extra1.txt'])
+    s = " ".join(args + ['extra1.txt'])
     if sys.platform in ['win32']:
         s = '"' + s + '"'
     os.system(s)
 def my_spawn2(sh, escape, cmd, args, env):
-    s = string.join(args + ['extra2.txt'])
+    s = " ".join(args + ['extra2.txt'])
     if sys.platform in ['win32']:
         s = '"' + s + '"'
     os.system(s)
@@ -85,3 +84,9 @@ test.must_match('file3.out', "file3.in\nextra1.txt\n")
 test.must_match('file4.out', "file4.in\nextra2.txt\n")
 
 test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: