diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c46b95df9b0..8d61a2d6e7d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2013-02-14 Jason Merrill + + * testsuite/18_support/quick_exit/quick_exit.cc: #if out the whole + test if unsupported. + 2013-02-13 Marc Glisse PR libstdc++/56111 diff --git a/libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc b/libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc index 8e55890bacc..b91cbe22e5b 100644 --- a/libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc +++ b/libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc @@ -21,6 +21,7 @@ // 18.5 - Start and termination +#if defined(_GLIBCXX_HAVE_AT_QUICK_EXIT) && defined(_GLIBCXX_HAVE_QUICK_EXIT) #include void handler() @@ -35,9 +36,10 @@ void wrong_handler() int main() { -#if defined(_GLIBCXX_HAVE_AT_QUICK_EXIT) && defined(_GLIBCXX_HAVE_QUICK_EXIT) std::at_quick_exit (handler); std::atexit (wrong_handler); std::quick_exit (1); -#endif } +#else +int main() {} +#endif