trivial typo in man page
[scons.git] / test / Case.py
index 663aa40d8b0d15fe66efa652acc4008b2fef2c16..435ca4acdca83e16fbaa12480cd21eea9d2cc73a 100644 (file)
@@ -65,8 +65,8 @@ void bar() {
 }
 """)
 
-if sys.platform == 'darwin':
-    test.skip_test("Skipping test on Darwin/OSX; it has partial case sensitivity.")
+if sys.platform[:6] == 'darwin':
+    test.skip_test("Skipping test on Darwin/OSX; it has partial case sensitivity.\n")
 
 if sys.platform in ['cygwin', 'win32']:
     sys.stdout.write("Using case-insensitive filesystem, testing for failure\n")
@@ -84,3 +84,9 @@ else:
     test.run(program = test.workpath('main' + _exe), stdout = "foo\nbar\n")
 
 test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: