blob: 10f957cb061e16ef8a1bf01a01c45f597a7acf56 [file] [log] [blame]
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * See COPYING for copyright and distribution information.
4 */
5
6#define BOOST_TEST_MAIN 1
7#define BOOST_TEST_DYN_LINK 1
8
Junxiao Shi482ccc52014-03-31 13:05:24 -07009#ifdef __clang__
10#pragma clang diagnostic push
11#pragma clang diagnostic ignored "-Wunneeded-internal-declaration"
12#endif // __clang__
13
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070014#include <boost/test/unit_test.hpp>
Junxiao Shi482ccc52014-03-31 13:05:24 -070015
16#ifdef __clang__
17#pragma clang diagnostic pop
18#endif // __clang__