mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
|
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <beast/detail/unit_test/reporter.hpp>
|
|
#include <beast/detail/unit_test/suite.hpp>
|
|
#include <beast/detail/stream/debug_ostream.hpp>
|
|
|
|
#ifdef _MSC_VER
|
|
# ifndef WIN32_LEAN_AND_MEAN // VC_EXTRALEAN
|
|
# define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
# undef WIN32_LEAN_AND_MEAN
|
|
# else
|
|
#include <windows.h>
|
|
# endif
|
|
#endif
|
|
|
|
#include <cstdlib>
|
|
|
|
// Simple main used to produce stand
|
|
// alone executables that run unit tests.
|
|
int main()
|
|
{
|
|
using namespace beast::detail::unit_test;
|
|
|
|
#ifdef _MSC_VER
|
|
{
|
|
int flags = _CrtSetDbgFlag (_CRTDBG_REPORT_FLAG);
|
|
flags |= _CRTDBG_LEAK_CHECK_DF;
|
|
_CrtSetDbgFlag (flags);
|
|
}
|
|
#endif
|
|
|
|
{
|
|
beast::detail::debug_ostream s;
|
|
reporter r (s);
|
|
bool failed (r.run_each (global_suites()));
|
|
if (failed)
|
|
return EXIT_FAILURE;
|
|
return EXIT_SUCCESS;
|
|
}
|
|
}
|