Update tests

This commit is contained in:
Peter Dimov
2022-02-12 19:13:09 +02:00
parent a5491d988a
commit f50916d0e1
4 changed files with 44 additions and 14 deletions

View File

@@ -1,4 +1,12 @@
#include <boost/config.hpp>
#include <boost/config/pragma_message.hpp>
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && ( defined(BOOST_GCC) && BOOST_GCC < 40600 )
BOOST_PRAGMA_MESSAGE( "Skipping test for GCC 4.4 -std=c++0x" )
int main() {}
#else
//
// bind_function2_test.cpp - regression test
@@ -118,3 +126,5 @@ int main()
function_test();
return boost::report_errors();
}
#endif