Displaying 2 results from an estimated 2 matches for "cppunittest".
2015 Apr 26
2
make environment for automated testcases
Hi,
I'm trying to get the automated testcases in nut/tests/ working. But I
just cant get a binary out of the build system.
The nut/tests/ folder looks good% ls
cpputest.cpp example.cpp Makefile Makefile.am Makefile.in
and I also tried "autoreconf -i" which gave me an:
autoreconf: 'configure.ac' or 'configure.in' is required
Any ideas?
Best
2015 Apr 27
3
make environment for automated testcases
...figure parameters so you don't need
> to manually re-run the auto-tools.) Do you have cppunit installed?
I tried now:
%apt-get install libcppunit-dev
~/nut% ./autogen.sh
~/nut% ./configure --with-usb --with-dev --enable-maintainer-mode
~/nut% autoreconf -i
~/nut/tests% make clean;make
rm -f cppunittest
rm -rf .libs _libs
rm -f *.o
test -z "cppunittest.log" || rm -f cppunittest.log
test -z "cppunittest.trs" || rm -f cppunittest.trs
test -z "test-suite.log" || rm -f test-suite.log
rm -f *.lo
make: Nothing to be done for `all'.
But it still doesn't compile any...