From f0abc88775b2bbc4da0d114411f75d18400d076e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 24 Feb 2007 22:40:59 +0000 Subject: [PATCH] Correct testing bugs: either changing assert(...) or BOOST_ASSERT(...) to BOOST_TEST (in my code only) or adding "return boost::report_errors();" where it was clearly missing (and a pure bug, in anyone's code). [SVN r37057] --- test/sequence/unpack_args.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/sequence/unpack_args.cpp b/test/sequence/unpack_args.cpp index c46ea722..099b411f 100644 --- a/test/sequence/unpack_args.cpp +++ b/test/sequence/unpack_args.cpp @@ -225,4 +225,5 @@ int main() test_sequence(l1); test_sequence(l2); test_sequence(l3); + return boost::report_errors(); }