From bf21d96225290d0e4ecbf8cccb3bfe0c666e202f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Thu, 9 Jun 2005 08:03:42 +0000 Subject: [PATCH] Don't run 'library_order' on cygwin, because test relied on gcc/Linux shlib linking mode. [SVN r29490] --- test/test_all.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/test_all.py b/test/test_all.py index 77222c9b5..7df9aed9d 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -134,8 +134,12 @@ tests = [ "rebuilds", 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") + # Besides, it fails ;-) + # Further, the test relies on the fact that on Linux, one + # can build a shared library with unresolved symbols. This is + # not true on Windows (even with cygwin gcc). + if string.find(os.uname()[0], "CYGWIN") == -1: + tests.append("library_order") if string.find(get_toolset(), 'gcc') == 0: tests.append("gcc_runtime")