2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-12 12:02:24 +00:00

Don't run 'library_order' on cygwin, because test relied on gcc/Linux shlib

linking mode.


[SVN r29490]
This commit is contained in:
Vladimir Prus
2005-06-09 08:03:42 +00:00
parent d9959968a1
commit bf21d96225

View File

@@ -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")