CppUnit: Difference between revisions
From CBLFS
Jump to navigationJump to search
Chipster19 (talk | contribs) No edit summary |
No edit summary |
||
| (5 intermediate revisions by 3 users not shown) | |||
| Line 7: | Line 7: | ||
---- | ---- | ||
{{Package-Introduction|CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.|http://sourceforge.net/apps/mediawiki/cppunit/}} | |||
CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests. | |||
== Dependencies == | == Dependencies == | ||
=== Optional === | === Optional === | ||
* [[ | * [[Doxygen]] | ||
== Non-Multilib == | == Non-Multilib == | ||
| Line 34: | Line 32: | ||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ | ||
./configure --prefix=/usr --disable-dependency-tracking && | ./configure --prefix=/usr --disable-dependency-tracking && | ||
make | make | ||
| Line 40: | Line 37: | ||
Install the package: | Install the package: | ||
make install | make install && | ||
mv -v /usr/bin/cppunit-config{,-32} | |||
=== N32 === | === N32 === | ||
| Line 47: | Line 45: | ||
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \ | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib32 \ | |||
./configure --prefix=/usr -- | --disable-dependency-tracking && | ||
make | make | ||
Install the package: | Install the package: | ||
make install | make install && | ||
mv -v /usr/bin/cppunit-config{,-n32} | |||
=== 64Bit === | === 64Bit === | ||
| Line 60: | Line 59: | ||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 \ | |||
./configure --prefix=/usr -- | --disable-dependency-tracking && | ||
make | make | ||
Install the package: | Install the package: | ||
make install | make install && | ||
mv -v /usr/bin/cppunit-config{,-64} && | |||
ln -sfv multiarch_wrapper /usr/bin/cppunit-config | |||
= Contents = | = Contents = | ||
| Line 73: | Line 74: | ||
|-valign="top" | |-valign="top" | ||
! Installed Programs: | ! Installed Programs: | ||
| cppunit-config | | cppunit-config DllPlugInTester | ||
|-valign="top" | |-valign="top" | ||
! Installed Libraries: | ! Installed Libraries: | ||
| Line 81: | Line 82: | ||
| /usr/include/cppunit | | /usr/include/cppunit | ||
|} | |} | ||
[[Category:Programming]] | |||
Latest revision as of 07:52, 15 May 2010
| Download Source: | http://downloads.sourceforge.net/cppunit/cppunit-1.12.1.tar.gz |
|---|
Introduction to CppUnit
CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.
Project Homepage: http://sourceforge.net/apps/mediawiki/cppunit/
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --disable-dependency-tracking && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --disable-dependency-tracking &&
make
Install the package:
make install &&
mv -v /usr/bin/cppunit-config{,-32}
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
--disable-dependency-tracking &&
make
Install the package:
make install &&
mv -v /usr/bin/cppunit-config{,-n32}
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--disable-dependency-tracking &&
make
Install the package:
make install &&
mv -v /usr/bin/cppunit-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/cppunit-config
Contents
| Installed Programs: | cppunit-config DllPlugInTester |
|---|---|
| Installed Libraries: | libcppunit.{a,la,so} |
| Installed Directories: | /usr/include/cppunit |