mirror of
https://github.com/boostorg/boost-ci.git
synced 2026-02-10 11:22:10 +00:00
* Remove templates * Update appveyor configs * Deduplicate os:linux from travis * Add more configs to travis * Add clang-9 * Fix failure of codecov job * Move template readme * Move VS 2013 test (older do not support 64bit)
16 lines
441 B
C++
16 lines
441 B
C++
//
|
|
// Copyright (c) 2020 Mateusz Loskot <mateusz@loskot.net>
|
|
//
|
|
// Use, modification and distribution is 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)
|
|
//
|
|
#include <boost/boost-ci/boost_ci.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
int main()
|
|
{
|
|
BOOST_TEST_EQ(boost::boost_ci::get_answer(), 42);
|
|
return boost::report_errors();
|
|
}
|