]> www.ginac.de Git - ginac.git/blobdiff - check/exams.cpp
- fixed three little standard-conformance issues.
[ginac.git] / check / exams.cpp
index 69f9d9a6b55ecb468429c078baefa43c07de7aae..41097741b669f103272981ac58de607f3192fa62 100644 (file)
@@ -3,7 +3,7 @@
  *  Main program that calls all individual exams. */
 
 /*
- *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
 int main()
 {
        unsigned result = 0;
+
+#define EXAM(which) \
+try { \
+       result += exam_ ## which (); \
+} catch (const exception &e) { \
+       cout << "Error: caught exception " << e.what() << endl; \
+       ++result; \
+}
        
-       try {
-               result += exam_paranoia();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_numeric();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_powerlaws();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_inifcns();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_differentiation();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_polygcd();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_normalization();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_pseries();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_matrices();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_lsolve();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_noncommut();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
-       
-       try {
-               result += exam_misc();
-       } catch (const exception &e) {
-               cout << "Error: caught exception " << e.what() << endl;
-               ++result;
-       }
+       EXAM(paranoia)
+       EXAM(numeric)
+       EXAM(powerlaws)
+       EXAM(inifcns)
+       EXAM(differentiation)
+       EXAM(polygcd)
+       EXAM(normalization)
+       EXAM(pseries)
+       EXAM(matrices)
+       EXAM(lsolve)
+       EXAM(indexed)
+       EXAM(color)
+       EXAM(clifford)
+       EXAM(archive)
+       EXAM(misc)
        
        if (result) {
                cout << "Error: something went wrong. ";