Imported Upstream version 3.2.2
[debian/gnuradio] / config / ax_boost_unit_test_framework.m4
1 #
2 # SYNOPSIS
3 #
4 #   AX_BOOST_UNIT_TEST_FRAMEWORK
5 #
6 # DESCRIPTION
7 #
8 #   Test for Unit_Test_Framework library from the Boost C++ libraries. The
9 #   macro requires a preceding call to AX_BOOST_BASE.
10 #
11 #   This macro calls:
12 #
13 #     AC_SUBST(BOOST_UNIT_TEST_FRAMEWORK_LIB)
14 #
15 #   And sets:
16 #
17 #     HAVE_BOOST_UNIT_TEST_FRAMEWORK
18 #
19 # COPYLEFT
20 #
21 #   Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
22 #   Copyright (c) 2008 Free Software Foundation, Inc.
23 #
24 #   Copying and distribution of this file, with or without modification, are
25 #   permitted in any medium without royalty provided the copyright notice
26 #   and this notice are preserved.
27
28 AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK],
29 [
30     AC_REQUIRE([AX_BOOST_BASE])
31     _AX_BOOST_CHECK([boost_unit_test_framework],
32                     [@%:@include <boost/test/unit_test.hpp>],
33                     [using boost::unit_test::test_suite;
34                      test_suite* test= BOOST_TEST_SUITE( "Unit test example 1" );
35                      return 0;])
36 ])