From 7f7e7a8a76e0f6a76705d8fb596af8daed4f4267 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 26 May 2004 10:59:48 +0000 Subject: [PATCH] Don't run library_order.py on Windows, since the test makes no sense there, does not work, and can't be easily fixed. [SVN r22933] --- v2/test/test_all.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v2/test/test_all.py b/v2/test/test_all.py index 8f9f9b0de..48ecebad7 100644 --- a/v2/test/test_all.py +++ b/v2/test/test_all.py @@ -120,7 +120,6 @@ tests = [ "project_test1", "library_chain", "unit_test", "standalone", - "library_order", "expansion", "wrapper", #"ordered_properties", @@ -128,6 +127,9 @@ tests = [ "project_test1", if os.name == 'posix': tests.append("symlink") + # On windows, library order is not important, so skip this test + # Besides, it fails ;-) + tests.append("library_order") if os.environ.has_key('QTDIR'): tests.append("railsys")