From b42ec73c4d87b5259d8ebae954db7fa6f502e5b9 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Mon, 14 Dec 2020 09:04:04 +0000 Subject: [PATCH] Add missing file. --- test/regress/wmain.cpp | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 test/regress/wmain.cpp diff --git a/test/regress/wmain.cpp b/test/regress/wmain.cpp new file mode 100644 index 00000000..a8019ea7 --- /dev/null +++ b/test/regress/wmain.cpp @@ -0,0 +1,54 @@ +/* + * + * 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 +