[complement-svn] SF.net SVN: complement: [1450] trunk/complement/explore/test
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2006-12-14 07:07:30
|
Revision: 1450 http://svn.sourceforge.net/complement/?rev=1450&view=rev Author: complement Date: 2006-12-13 23:07:29 -0800 (Wed, 13 Dec 2006) Log Message: ----------- move mt unit tests Modified Paths: -------------- trunk/complement/explore/test/mt/Makefile trunk/complement/explore/test/mt/unit_test.cc Added Paths: ----------- trunk/complement/explore/test/mt/ Removed Paths: ------------- trunk/complement/explore/test/libmt/delay/ trunk/complement/explore/test/libmt/join/ trunk/complement/explore/test/libmt/signal-1/ trunk/complement/explore/test/libmt/signal-2/ trunk/complement/explore/test/libmt/unit/ Copied: trunk/complement/explore/test/mt (from rev 1448, trunk/complement/explore/test/libmt/unit) Modified: trunk/complement/explore/test/mt/Makefile =================================================================== --- trunk/complement/explore/test/libmt/unit/Makefile 2006-12-13 18:32:33 UTC (rev 1448) +++ trunk/complement/explore/test/mt/Makefile 2006-12-14 07:07:29 UTC (rev 1450) @@ -1,6 +1,6 @@ # -*- Makefile -*- Time-stamp: <06/08/04 10:54:19 ptr> -SRCROOT := ../../.. +SRCROOT := ../.. COMPILER_NAME := gcc include Makefile.inc Modified: trunk/complement/explore/test/mt/unit_test.cc =================================================================== --- trunk/complement/explore/test/libmt/unit/unit_test.cc 2006-12-13 18:32:33 UTC (rev 1448) +++ trunk/complement/explore/test/mt/unit_test.cc 2006-12-14 07:07:29 UTC (rev 1450) @@ -1,30 +1,13 @@ -// -*- C++ -*- Time-stamp: <04/08/31 23:07:30 ptr> +// -*- C++ -*- Time-stamp: <06/12/14 10:01:14 ptr> /* - * - * Copyright (c) 2002, 2003, 2004 + * Copyright (c) 2002, 2003, 2004, 2006 * Petr Ovtchenkov * - * Licensed under the Academic Free License Version 2.0 + * Licensed under the Academic Free License Version 3.0 * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. */ -#ifdef __unix -# ifdef __HP_aCC -#pragma VERSIONID "@(#)$Id$" -# else -#ident "@(#)$Id$" -# endif -#endif - #include <boost/test/unit_test.hpp> #include <config/feature.h> @@ -62,8 +45,10 @@ // (stack saved/restored, that confuse stack unwind); // by this reason next test is commented: // ts->add( BOOST_TEST_CASE( &signal_2_test ) ); - ts->add( BOOST_TEST_CASE( &flock_test ) ); - ts->add( BOOST_TEST_CASE( &lfs_test ) ); + // flock requre revision, commented now. + // ts->add( BOOST_TEST_CASE( &flock_test ) ); + // ts->add( BOOST_TEST_CASE( &lfs_test ) ); + return ts; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |