$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r71636 - in sandbox/block_ptr/libs/smart_ptr: example test
From: phil_at_[hidden]
Date: 2011-04-30 19:33:39
Author: pbouchard
Date: 2011-04-30 19:33:37 EDT (Sat, 30 Apr 2011)
New Revision: 71636
URL: http://svn.boost.org/trac/boost/changeset/71636
Log:
* Fixing the Jamfiles...
Added:
   sandbox/block_ptr/libs/smart_ptr/test/Jamfile.v2   (contents, props changed)
Text files modified: 
   sandbox/block_ptr/libs/smart_ptr/example/Jamfile.v2 |    13 +++++--------                           
   sandbox/block_ptr/libs/smart_ptr/example/Makefile   |     2 +-                                      
   2 files changed, 6 insertions(+), 9 deletions(-)
Modified: sandbox/block_ptr/libs/smart_ptr/example/Jamfile.v2
==============================================================================
--- sandbox/block_ptr/libs/smart_ptr/example/Jamfile.v2	(original)
+++ sandbox/block_ptr/libs/smart_ptr/example/Jamfile.v2	2011-04-30 19:33:37 EDT (Sat, 30 Apr 2011)
@@ -1,4 +1,4 @@
-# Shifted Pointer
+# Block Pointer
 #
 # Copyright (c) 2011
 # Phil Bouchard
@@ -23,11 +23,8 @@
         <warnings>all
 ;
 
-test-suite "set_ptr_tests" :
-    [ run set_ptr_test1.cpp ]
-    [ run set_ptr_test2.cpp ]
-    #[ run set_ptr_test3.cpp /boost//boost_unit_test_framework ]
-    #[ run local_pool_test1.cpp ]
-    #[ run local_pool_test2.cpp ]
-    #[ run t100_test1.cpp /boost//boost_regex ]
+test-suite "block_ptr_tests" :
+    [ run block_ptr_test1.cpp /boost//boost_unit_test_framework ]
+    [ run block_ptr_test3.cpp /boost//boost_unit_test_framework ]
+    [ run t100_test1.cpp /boost//boost_regex ]
     ;
Modified: sandbox/block_ptr/libs/smart_ptr/example/Makefile
==============================================================================
--- sandbox/block_ptr/libs/smart_ptr/example/Makefile	(original)
+++ sandbox/block_ptr/libs/smart_ptr/example/Makefile	2011-04-30 19:33:37 EDT (Sat, 30 Apr 2011)
@@ -1,5 +1,5 @@
 CXX             := g++
-CXXFLAGS        := -ggdb3
+CXXFLAGS        := -O3
 INCPATH         := -I../../.. -I../../../../../include
 LINK            := g++
 LFLAGS          := -L../../../../../lib -lboost_thread
Added: sandbox/block_ptr/libs/smart_ptr/test/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/block_ptr/libs/smart_ptr/test/Jamfile.v2	2011-04-30 19:33:37 EDT (Sat, 30 Apr 2011)
@@ -0,0 +1,31 @@
+# Block Pointer
+#
+# Copyright (c) 2011
+# Phil Bouchard
+#
+# Distributed under the Boost Software License, Version 1.0. (See
+# accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt
+
+using testing ;
+
+if ! $(BOOST_ROOT)
+{
+    BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
+}
+
+# bjam -V2 threading=multi target-os=cygwin threadapi=pthread variant=debug
+
+lib boost_unit_test_framework : : <name>boost_unit_test_framework ;
+
+project :
+    : requirements
+        <include>../../.. 
+        <include>$(BOOST_ROOT)
+        <warnings>all
+;
+
+test-suite "block_ptr_tests" :
+    [ run block_ptr_test1.cpp boost_unit_test_framework ]
+    [ run block_ptr_test3.cpp boost_unit_test_framework ]
+    ;