Using TestApe instrumenter with GCC

The gcc/g++ needs access to interface file and ld needs access to the library file. In addition certain system libraries are required. This is all taken care of by the package manager. To install TestApe on a Debian based system run

   dpkg -i testape_r556_i386.deb
On a Redhat based system run
   rpm -i testape-r556-2.i386.rpm

The package manager will put the binaries in /usr/bin, /usr/include, /usr/lib and the documentation and examples in /usr/share/doc/testape

If you want to do it manually, unpack the tar ball and put the instrumenter,interface and library in the proper directories. Remember to link to testape.a from /usr/lib/libtestape.a if you want to use -ltestape option.

The library and instrumenter will depend of the following libraries

   libstdc++.so.6
   libm.so.6
   libgcc_s.so.1
   libc.so.6

To use the instrumenter with the linux linker ld simply link with the testape library and invoke the instrumenter in front of the final linker command as shown in the examples below

 testape ld unit_a.o unit_d.o ad_test.o testape.a
 testape ld unit_a.o unit_d.o ad_test.o /path/testape.a
or when the linker is used through gcc/g++
 testape gcc unit_a.c unit_d.c ad_test.c testape.a
 testape gcc unit_a.c unit_d.c ad_test.c -ltestape

If the libray is used together with tests written in C++, or if the tests are compiled with g++, the interface needs to be put inside a extern "C" declaration in order to be linkable with the C++ program.

Eventhough the instrumenter cannot autogenerate mocks for code that is written in C++, it is still possible to use the the framework to test the code. All mocks will have to be written manually.

For further information on TestApe with C++ see the forum at http://testape.com.

testape

News

The latest headlines from Testape.com

TestApe Release 880 available, Dec 3rd 2011

New is this release are support for floating point validations and function mocking. Also, MinGW has been added to the list of supported platforms.

more

Forum change, Mar 27th 2011

TestApe forum is now hosted on Proboards. Support questions can be posted here or send directly on email. Due to ...

more

TestApe beta release available, Sep 27th 2011

TestApe can now be used with MinGW GCC on windows. Also supported in this beta are floating point types in validations or when mocking functions

more

IPad update for WebTTY, May 15th 2011

A small fix for webtty scripts, to allow the usage from Apple IPads. Tab on textarea to bring up IPad keyboard - you may have to scroll webpage beneath keyboard, in order to actually see what you're typing.

TestApe Release 791 available, Apr 2nd 2010

This release contains a new flexible mocking system with default mocks automatically generated for unresolved functions. Installation packages are available for GCC/Linux, GCC/CygWin as well Visual Studio 2009/Windows XP or Vista.

more

TestApe beta version available, Jan 26th 2010

New beta version is now available for download. This is the last beta before official release. The release supports an extensive mocking system.

more

Forum change, Mar 10th 2009

There is a change for the forum hosted on this site. The previous phpBB forum is closed for now. All forum threads will be migrated to a new simple blog. ...

more