Ticket #3432: double_free.cpp

File double_free.cpp, 202 bytes (added by janm@…, 13 years ago)

Test case with a single unit test.

Line 
1#include <signal.h>
2#define BOOST_TEST_MAIN
3#include <boost/test/included/unit_test.hpp>
4#include <stdlib.h>
5
6const char* _malloc_options = "J";
7
8BOOST_AUTO_TEST_CASE(broken)
9{
10 BOOST_CHECK(true);
11}