void testu(unsigned int a, unsigned int b) { if (test1u(a) != b) abort(); if (test2u(a) != b) abort(); if (test3u(a) != b) abort(); if (test4u(a) != b) abort(); if (test5u(a) != b) abort(); if (test6u(a) != b) abort(); }
int main(int argc, char **argv) { try { alarm(60); test1(); test2(); test3(); test3u(); test4(); test4u(); test5(); } catch (LIBCXX_NAMESPACE::exception &e) { std::cout << e << std::endl; } return 0; }