/* Copyright 2005-2009, Felspar Co Ltd. http://fost.3.felspar.com/ Distributed under 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 */ #include #include namespace { fostlib::setting< bool > c_verbose( L"fost-test/boost-build-unit-test.cpp", L"Tests", L"Display test names", true ); } FSL_MAIN( L"boost-build-unit-test", L"boost-build-unit-test executor\nCopyright (c) 1995-2009, Felspar Co. Ltd." )( fostlib::ostream &out, fostlib::arguments &args ) { if ( fostlib::test::suite::execute( out ) ) return 1; else return 0; }