$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53433 - sandbox/task/libs/task/test
From: oliver.kowalke_at_[hidden]
Date: 2009-05-30 05:05:12
Author: olli
Date: 2009-05-30 05:05:11 EDT (Sat, 30 May 2009)
New Revision: 53433
URL: http://svn.boost.org/trac/boost/changeset/53433
Log:
* mods for FreeBSD (test Jamfile)
Text files modified: 
   sandbox/task/libs/task/test/Jamfile.v2 |    28 ++++++++++++++--------------            
   1 files changed, 14 insertions(+), 14 deletions(-)
Modified: sandbox/task/libs/task/test/Jamfile.v2
==============================================================================
--- sandbox/task/libs/task/test/Jamfile.v2	(original)
+++ sandbox/task/libs/task/test/Jamfile.v2	2009-05-30 05:05:11 EDT (Sat, 30 May 2009)
@@ -9,27 +9,27 @@
 # bring in rules for testing
 import testing ;
 
-project
+project boost/task/test
     : requirements
-         <library>../../test/build//boost_unit_test_framework
-         <library>../../thread/build//boost_thread
-         <library>../../system/build//boost_system
-         <library>../../task/build//boost_task
-         <link>static
-         <threading>multi
+        <library>../../test/build//boost_unit_test_framework
+        <library>../../thread/build//boost_thread
+        <library>../../task/build//boost_task
+        <library>../../system/build//boost_system
+        <link>static
+        <threading>multi
     ;
 
-rule tp-test ( source )
+rule task-test ( source )
 {
     return
         [ run $(source).cpp ]
     ;
 }
 
-test-suite thread_pool :
-    [ tp-test test_own_thread ]
-    [ tp-test test_new_thread ]
-    [ tp-test test_default_pool ]
-    [ tp-test test_unbounded_pool ]
-    [ tp-test test_bounded_pool ]
+test-suite task :
+    [ task-test test_own_thread ]
+    [ task-test test_new_thread ]
+    [ task-test test_default_pool ]
+    [ task-test test_unbounded_pool ]
+    [ task-test test_bounded_pool ]
     ;