[complement-svn] SF.net SVN: complement: [1637] trunk/complement/explore/test/mt/mt_test.cc
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-07-23 12:17:24
|
Revision: 1637 http://svn.sourceforge.net/complement/?rev=1637&view=rev Author: complement Date: 2007-07-23 05:17:18 -0700 (Mon, 23 Jul 2007) Log Message: ----------- fix test, due to check fail on STLP_DEBUG on Athlon64x2 Modified Paths: -------------- trunk/complement/explore/test/mt/mt_test.cc Modified: trunk/complement/explore/test/mt/mt_test.cc =================================================================== --- trunk/complement/explore/test/mt/mt_test.cc 2007-07-23 11:55:46 UTC (rev 1636) +++ trunk/complement/explore/test/mt/mt_test.cc 2007-07-23 12:17:18 UTC (rev 1637) @@ -89,7 +89,8 @@ xmt::Thread t1( thread2_entry_call, &b ); xmt::Thread t2( thread2_entry_call, &b ); - EXAM_CHECK( (t2.join().iword + t1.join().iword) == 2 ); + EXAM_CHECK( t2.join().iword == 1 ); + EXAM_CHECK( t1.join().iword == 1 ); return EXAM_RESULT; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |