~ubuntu-branches/ubuntu/vivid/regina-normal/vivid-proposed

« back to all changes in this revision

Viewing changes to testsuite/runalltests.cpp

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2011-09-10 07:17:25 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: package-import@ubuntu.com-20110910071725-97n90tywdq60w2cr
Tags: 4.90-1
* New upstream release!
* The user interface has been ported from KDE3 to KDE4 (closes: #556318).
  Re-enabled the GUI as a result.
* The build system has been ported from autotools to cmake.
* The new upstream release builds fine on amd64 (closes: #624882).
* Moved the users' handbook into regina-normal-doc.
* Upgraded several suggests/recommends.  Upgraded regina-normal-mpi to
  depend on mpi-default-bin, and regina-normal to depend on both graphviz
  and regina-normal-doc (which the GUI expends to be present).  Upgraded
  regina-normal to recommend gap.
* Bumped standards-version to 3.9.2.0 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *  Regina - A Normal Surface Theory Calculator                           *
5
5
 *  Test Suite                                                            *
6
6
 *                                                                        *
7
 
 *  Copyright (c) 1999-2009, Ben Burton                                   *
 
7
 *  Copyright (c) 1999-2011, Ben Burton                                   *
8
8
 *  For further details contact Ben Burton (bab@debian.org).              *
9
9
 *                                                                        *
10
10
 *  This program is free software; you can redistribute it and/or         *
31
31
#include <cppunit/Test.h>
32
32
#include <cppunit/TestResult.h>
33
33
#include <cppunit/TextTestProgressListener.h>
 
34
#include "testsuite/testparams.h"
34
35
#include "testsuite/angle/testangle.h"
35
36
#include "testsuite/census/testcensus.h"
36
37
#include "testsuite/maths/testmaths.h"
100
101
 */
101
102
bool runAllTests() {
102
103
    std::cout << "Regina calculation engine test suite\n\n" << std::flush;
 
104
    checkTestParams();
103
105
 
104
106
    CppUnit::TextUi::TestRunner runner;
105
107
    ReginaProgress progress;
112
114
     */
113
115
 
114
116
    // Utilities:
 
117
    addNBitmask(runner);
115
118
    addNIndexedArray(runner);
116
119
    addNLargeInteger(runner);
117
120
    addNRational(runner);
118
121
 
119
122
    // Maths:
 
123
    addNPerm3(runner);
 
124
    addNPerm4(runner);
120
125
    addNPrimes(runner);
121
126
    addNumberTheory(runner);
122
127
    addMatrixOps(runner);
123
128
 
124
129
    // Triangulation:
125
 
    addNPerm(runner);
126
130
    addNTriangulation(runner);
127
131
    addElementaryMoves(runner);
128
132
    addConnectedSumDecomp(runner);