From 765718880271d5966df4a5b88c621fa6103d7435 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 14 Jun 2021 18:07:06 +0300 Subject: [PATCH] Disable std_interop_test5 on g++ 4.7 and 4.8; these crash on Xenial, but the real g++ 4.8 on CentOS 7 and Trusty works --- test/Jamfile.v2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 0ad92a4..49a99a0 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -97,5 +97,11 @@ run snprintf_test.cpp ; run std_interop_test2.cpp ; run std_interop_test3.cpp ; run std_interop_test4.cpp ; -run std_interop_test5.cpp ; +run std_interop_test5.cpp + : : : + # crash on xenial, but the real g++ 4.8 on both centos 7 and trusty works + gcc-4.7:no + gcc-4.8:no + ; + run std_interop_test6.cpp ;