diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 024fab6..7145555 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -1,6 +1,6 @@ # Boost.Core Library test Jamfile # -# Copyright (c) 2014 Peter Dimov +# Copyright (c) 2014, 2017 Peter Dimov # # Distributed under the Boost Software License, Version 1.0. # See accompanying file LICENSE_1_0.txt or copy at @@ -9,6 +9,10 @@ import modules ; import testing ; +# quick test (for CI) +run quick.cpp ; + +# full test suite run addressof_test.cpp ; run addressof_test2.cpp ; run addressof_np_test.cpp ; diff --git a/test/quick.cpp b/test/quick.cpp new file mode 100644 index 0000000..c043f69 --- /dev/null +++ b/test/quick.cpp @@ -0,0 +1,34 @@ +// +// quick.cpp - a quick (CI) test for Boost.Core +// +// Copyright 2017 Peter Dimov +// +// 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 +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int main() +{ +}