1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
// copyright (C) 2002, 2003 graydon hoare <graydon@pobox.com>
// all rights reserved.
// licensed to the public under the terms of the GNU GPL (>= 2)
// see the file COPYING for details
#include <stdlib.h>
#include "unit_tests.hh"
#include "sanity.hh"
#include <set>
#include <string>
static bool clean_shutdown;
void dumper()
{
if (!clean_shutdown)
global_sanity.dump_buffer();
}
void clean_shutdown_dummy_test()
{
clean_shutdown = true;
}
test_suite * init_unit_test_suite(int argc, char * argv[])
{
clean_shutdown = false;
atexit(&dumper);
global_sanity.set_debug();
test_suite * suite = BOOST_TEST_SUITE("monotone unit tests");
I(suite);
std::set<std::string> t;
if (argc > 1)
t = std::set<std::string>(argv+1, argv+argc);
// call all the adders here
if (t.empty() || t.find("file_io") != t.end())
add_file_io_tests(suite);
if (t.empty() || t.find("key") != t.end())
add_key_tests(suite);
if (t.empty() || t.find("transform") != t.end())
add_transform_tests(suite);
if (t.empty() || t.find("vocab") != t.end())
add_vocab_tests(suite);
if (t.empty() || t.find("revision") != t.end())
add_revision_tests(suite);
if (t.empty() || t.find("change_set") != t.end())
add_change_set_tests(suite);
if (t.empty() || t.find("diff_patch") != t.end())
add_diff_patch_tests(suite);
if (t.empty() || t.find("xdelta") != t.end())
add_xdelta_tests(suite);
if (t.empty() || t.find("packet") != t.end())
add_packet_tests(suite);
if (t.empty() || t.find("netcmd") != t.end())
add_netcmd_tests(suite);
if (t.empty() || t.find("netcmd") != t.end())
add_path_component_tests(suite);
// all done, add our clean-shutdown-indicator
suite->add(BOOST_TEST_CASE(&clean_shutdown_dummy_test));
return suite;
}
|