2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00

Disabled pointer_vector test on Tru64/CXX as it runs forever and keeps hanging

the regression tests.


[SVN r33207]
This commit is contained in:
Markus Schöpflin
2006-03-03 09:08:39 +00:00
parent 28ef4a9e38
commit fa4ebe5c53

View File

@@ -22,6 +22,20 @@ rule turn-off-intel-debug-symbols ( toolset variant : properties * )
return $(properties) ;
}
# Some tests hang when compiled with HP-CXX and executed on Tru64.
rule disable-for-cxx-tru64 ( toolset variant : properties * )
{
if $(UNIX) && $(OS) = OSF
{
switch $(toolset)
{
case tru64cxx* : properties =
[ replace-properties $(properties) : <build>no ] ;
}
}
return $(properties) ;
}
template py-unit-test
:
: $(PYTHON_PROPERTIES) <define>BOOST_PYTHON_SUPPRESS_REGISTRY_INITIALIZATION
@@ -169,7 +183,11 @@ bpl-test crossmod_exception
[ bpl-test docstring ]
[ bpl-test vector_indexing_suite ]
[ bpl-test pointer_vector ]
[ bpl-test pointer_vector
: # files
: # requirements
disable-for-cxx-tru64 # Runs forever when executed.
]
[ extension map_indexing_suite_ext
: map_indexing_suite.cpp int_map_indexing_suite.cpp <template>../build/extension ]