X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftimes.cpp;h=9542c84ed09376e51463f65921549d790aa00b03;hp=f5642862b47f678edba343d9b5c0bde8b1db0a34;hb=5ced2647e3a2ce07042d0829017d0d12de9883a5;hpb=aae2dae47827f2b0102b7557bddc22e8555d490b diff --git a/check/times.cpp b/check/times.cpp index f5642862..9542c84e 100644 --- a/check/times.cpp +++ b/check/times.cpp @@ -113,6 +113,13 @@ int main() ++result; } + try { + result += time_lw_IJKL(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + try { result += time_lw_M1(); } catch (const exception &e) { @@ -141,6 +148,20 @@ int main() ++result; } + try { + result += time_lw_Q(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_Qprime(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + if (result) { cout << "Error: something went wrong. "; if (result == 1) {