/* * * Copyright (c) 2004 * John Maddock * * Use, modification and distribution are subject to 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) * */ /* * LOCATION: see http://www.boost.org for most recent version. * FILE main.cpp * VERSION see * DESCRIPTION: entry point for test program. */ #include "test.hpp" #include "test_locale.hpp" #include #include #include #ifdef BOOST_HAS_ICU #include #endif #ifdef TEST_THREADS #include #include #include #include #include int* get_array_data(); #endif #ifndef BOOST_NO_WREGEX void test(const wchar_t& c, const test_regex_replace_tag& tag) { do_test(c, tag); } void test(const wchar_t& c, const test_regex_search_tag& tag) { do_test(c, tag); } void test(const wchar_t& c, const test_invalid_regex_tag& tag) { do_test(c, tag); } #endif