From: <den...@us...> - 2009-07-02 10:10:26
|
Revision: 3 http://stdair.svn.sourceforge.net/stdair/?rev=3&view=rev Author: denis_arnaud Date: 2009-07-01 19:37:46 +0000 (Wed, 01 Jul 2009) Log Message: ----------- [Test] Fixed a endless recursion bug in the test suite. Modified Paths: -------------- trunk/stdair/test/StandardAirlineITTestSuite.cpp Removed Paths: ------------- trunk/stdair/stdair/config/stdair-paths.hpp Property Changed: ---------------- trunk/stdair/stdair/config/ trunk/stdair/test/ Property changes on: trunk/stdair/stdair/config ___________________________________________________________________ Modified: svn:ignore - .deps .libs Makefile.in Makefile + .deps .libs Makefile.in Makefile stdair-paths.hpp Deleted: trunk/stdair/stdair/config/stdair-paths.hpp =================================================================== --- trunk/stdair/stdair/config/stdair-paths.hpp 2009-07-01 10:00:27 UTC (rev 2) +++ trunk/stdair/stdair/config/stdair-paths.hpp 2009-07-01 19:37:46 UTC (rev 3) @@ -1,11 +0,0 @@ -#ifndef __STDAIR_PATHS_HPP -#define __STDAIR_PATHS_HPP -#define PACKAGE "stdair" -#define PACKAGE_NAME "STDAIR" -#define PACKAGE_VERSION "0.1.0" -#define PREFIXDIR "/home/darnaud/dev/deliveries/stdair-0.1.0" -#define BINDIR "/home/darnaud/dev/deliveries/stdair-0.1.0/bin" -#define LIBEXECDIR "/home/darnaud/dev/deliveries/stdair-0.1.0/libexec" -#define DATADIR "/home/darnaud/dev/deliveries/stdair-0.1.0/share" -#define DOCDIR "/home/darnaud/dev/deliveries/stdair-0.1.0/share/doc/stdair-0.1.0" -#endif // __STDAIR_PATHS_HPP Property changes on: trunk/stdair/test ___________________________________________________________________ Modified: svn:ignore - .deps .libs Makefile.in Makefile StandardAirlineITTestSuite + .deps .libs Makefile.in Makefile StandardAirlineITTestSuite StandardAirlineITTestSuite.log StandardAirlineITTestSuite_results.xml Modified: trunk/stdair/test/StandardAirlineITTestSuite.cpp =================================================================== --- trunk/stdair/test/StandardAirlineITTestSuite.cpp 2009-07-01 10:00:27 UTC (rev 2) +++ trunk/stdair/test/StandardAirlineITTestSuite.cpp 2009-07-01 19:37:46 UTC (rev 3) @@ -9,7 +9,7 @@ #include <test/StandardAirlineITTestSuite.hpp> // ////////////////////////////////////////////////////////////////////// -void testStandardAirlineIT() { +void testStandardAirlineITHelper() { try { @@ -36,7 +36,7 @@ // ////////////////////////////////////////////////////////////////////// void StandardAirlineITTestSuite::testStandardAirlineIT() { - CPPUNIT_ASSERT_NO_THROW (testStandardAirlineIT();); + CPPUNIT_ASSERT_NO_THROW (testStandardAirlineITHelper();); } // ////////////////////////////////////////////////////////////////////// This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |