Parent Directory
|
Revision Log
+ NEW BUILD SYSTEM This commit contains the new build system with cross-platform support. Most things work are before though you can have more control. ENVIRONMENT settings have changed: + You no longer require LD_LIBRARY_PATH or PYTHONPATH to point to the esysroot for building and testing performed via scons + ACcESS altix users: It is recommended you change your modules to load the latest intel compiler and other libraries required by boost to match the setup in svn (you can override). The correct modules are as follows module load intel_cc.9.0.026 export MODULEPATH=${MODULEPATH}:/data/raid2/toolspp4/modulefiles/gcc-3.3.6 module load boost/1.33.0/python-2.4.1 module load python/2.4.1 module load numarray/1.3.3
1 | robwdcock | 642 | #include "BruceTestCase.h" |
2 | #include "BruceFactoryTestCase.h" | ||
3 | |||
4 | #include "CppUnitTest/TestRunner.h" | ||
5 | |||
6 | using namespace CppUnitTest; | ||
7 | |||
8 | int main(int argc, char* argv[]) | ||
9 | { | ||
10 | // | ||
11 | // object which runs all of the tests | ||
12 | TestRunner runner; | ||
13 | // | ||
14 | // add the RangeTestCase suite of tests to the runner | ||
15 | runner.addTest ("Bruce", BruceTestCase::suite()); | ||
16 | runner.addTest ("BruceFactory", BruceFactoryTestCase::suite()); | ||
17 | |||
18 | // actually run the unit tests. | ||
19 | runner.run (argc, argv); | ||
20 | return 0; | ||
21 | } | ||
22 |
ViewVC Help | |
Powered by ViewVC 1.1.26 |