CppUnit - C++ port of JUnit Code
Brought to you by:
blep
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | CppUnit --- The C++ Unit Test Library ------------------------------------- http://cppunit.sourceforge.net INSTALLATION using configure script ----------------------------------- See the file INSTALL for basic instructions. A short explanation for each non-standard configure option follows. --disable-typeinfo-name Some output from the library will use a class name to distinguish between tests. Normally, the Run-Time Type Information system is used (specifically, the type_info::name() function) to generate the name. Some compilers return human-readable names via this interface. Other compilers do not. If your compiler does not generate a pleasing class name, specify this option; the names will be generated by other means. System Notes ------------ IRIX 6 / MIPSpro compiler 7.30 ------------------------------ The MIPSpro compiler requires the "-LANG:std" flag to enable the standard C++ library. You must set the CC variable when you configure, as follows ./configure CC='CC -LANG:std' There is a bug in released versions of libtool prevents the -LANG flag from being properly passed during the linking stage. To check if you have this bug, examine the output of "grep 'no.*irix' libtool". If you see a line like "no/*-*-irix*)" then you suffer from the bug. [A fixed version of libtool will look like "no/*-*-irix* | /*-*-irix*)".] If your libtool script suffers from the bug, open it in an editor, find the first line that contains "with_gcc", and change it to read "with_gcc=no". DEC alpha with cxx V6.1-029 and RougeWave STL --------------------------------------------- A user report that you may have to configure using ./configure DEC_CXX="-D__USE_STD_IOSTREAM -D__STD_MS" [Is that really "RogueWave"?] |