? regress/test_smatch.cpp Index: Jamfile =================================================================== RCS file: /cvsroot/boost/boost/libs/regex/test/Jamfile,v retrieving revision 1.34 diff -u -r1.34 Jamfile --- Jamfile 16 Jul 2006 17:24:24 -0000 1.34 +++ Jamfile 24 Jul 2006 22:12:29 -0000 @@ -12,6 +12,7 @@ R_SOURCE = basic_tests.cpp main.cpp +test_smatch.cpp test_alt.cpp test_anchors.cpp test_asserts.cpp Index: Jamfile.v2 =================================================================== RCS file: /cvsroot/boost/boost/libs/regex/test/Jamfile.v2,v retrieving revision 1.11 diff -u -r1.11 Jamfile.v2 --- Jamfile.v2 16 Jul 2006 17:24:24 -0000 1.11 +++ Jamfile.v2 24 Jul 2006 22:12:29 -0000 @@ -42,6 +42,7 @@ test_unicode.cpp test_overloads.cpp test_operators.cpp +test_smatch.cpp ; local regress-sources = regress/$(R_SOURCE) ; Index: regress/main.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/regex/test/regress/main.cpp,v retrieving revision 1.6 diff -u -r1.6 main.cpp --- regress/main.cpp 20 May 2005 15:35:44 -0000 1.6 +++ regress/main.cpp 24 Jul 2006 22:12:31 -0000 @@ -26,6 +26,7 @@ { basic_tests(); test_simple_repeats(); + test_smatch(); test_alt(); test_sets(); test_sets2(); Index: regress/test.hpp =================================================================== RCS file: /cvsroot/boost/boost/libs/regex/test/regress/test.hpp,v retrieving revision 1.6 diff -u -r1.6 test.hpp --- regress/test.hpp 19 Aug 2005 16:12:27 -0000 1.6 +++ regress/test.hpp 24 Jul 2006 22:12:31 -0000 @@ -243,6 +243,7 @@ void test_operators(); void test_overloads(); void test_unicode(); +void test_smatch(); #endif