From e832baf93fa34a3f8868291200adab9b31787343 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 16 Oct 2017 07:23:33 -0700 Subject: [PATCH] Check compiler feature in Jamfile --- CHANGELOG.md | 1 + test/Jamfile | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 304b0b6a..9b9fa9da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ Version 123: * Use unit-test subtree * Fix spurious race in websocket close test +* Check compiler feature in Jamfile -------------------------------------------------------------------------------- diff --git a/test/Jamfile b/test/Jamfile index aefcfa84..22b37a4d 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -7,8 +7,16 @@ # Official repository: https://github.com/boostorg/beast # +import testing ; +import ../../config/checks/config : requires ; + project /boost/beast/test : requirements + [ requires + cxx11_variadic_templates + cxx11_template_aliases + cxx11_decltype + cxx11_hdr_tuple ] ./extern ;