X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fmain.cpp;h=d500b9e3aa15bf8679ebba899e0f2a00b5dc4dbd;hp=787f92080eae1875c79c0c556d339110ac1bb900;hb=cf8f92747d9bd3f54f9dd206f7952eba12f7c791;hpb=c10054835b4c63a95b37703a952d663f280aa1ce diff --git a/check/main.cpp b/check/main.cpp index 787f9208..d500b9e3 100644 --- a/check/main.cpp +++ b/check/main.cpp @@ -1,7 +1,28 @@ -// check/main.cpp +/** @file main.cpp + * + * Main program that calls all individual tests. */ + +/* + * GiNaC Copyright (C) 1999-2000 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ #include -#include +#include + #include "check.h" int main() @@ -22,9 +43,11 @@ int main() result += fcntimer(matrix_checks); result += fcntimer(lsolve_onedim); result += fcntimer(series_expansion); + result += fcntimer(lortensor_check); } } catch (exception const & e) { cout << "error: caught an exception: " << e.what() << endl; + result++; } if (result) {