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(); +}