From cf06d842e220fa34cad7bc7f7856b6837a03ec94 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 14 May 2023 01:09:13 +0300 Subject: [PATCH] Add stub latch_test.cpp --- test/Jamfile | 2 ++ test/latch_test.cpp | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 test/latch_test.cpp diff --git a/test/Jamfile b/test/Jamfile index d4a1f67..0a3ca0c 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -21,3 +21,5 @@ project ; run quick.cpp ; + +run latch_test.cpp ; diff --git a/test/latch_test.cpp b/test/latch_test.cpp new file mode 100644 index 0000000..8102631 --- /dev/null +++ b/test/latch_test.cpp @@ -0,0 +1,11 @@ +// Copyright 2023 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#include +#include + +int main() +{ + return boost::report_errors(); +}