From 2d082ede2f1ec3e764f372b828226dfe02031b40 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 2 Jan 2014 16:33:51 +0200 Subject: [PATCH] Add test/Jamfile.v2 --- test/Jamfile.v2 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/Jamfile.v2 diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..32893fe --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,17 @@ +# Boost.Assert Library test Jamfile +# +# Copyright (c) 2014 Peter Dimov +# +# 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 + +# bring in rules for testing +import testing ; + +test-suite "assert" + : + [ run ../assert_test.cpp ] + [ run ../current_function_test.cpp : : : always_show_run_output ] + [ run ../verify_test.cpp ] + ;