From 78b9fb9455490cdab3a3647ad46cec5544e93c4f Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Tue, 19 Mar 2024 11:10:39 +0900 Subject: [PATCH] haltest: Fix test execution error The gtest version up to 1.14. Have to match test build version to 1.14. Change-Id: I3689f6e6fb5835ba03ea5feb9844571455a77bc3 Signed-off-by: Junkyeong Kim --- haltests/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haltests/Makefile.am b/haltests/Makefile.am index 4f2be61..1130b8d 100644 --- a/haltests/Makefile.am +++ b/haltests/Makefile.am @@ -18,7 +18,8 @@ tbm_haltests_CXXFLAGS = \ @LIBTBM_CFLAGS@ \ @LIBTBM_TEST_CFLAGS@ \ -I$(top_srcdir)/include \ - -I$(top_srcdir)/src + -I$(top_srcdir)/src \ + -std=c++14 tbm_haltests_LDFLAGS = \ @DLOG_LIBS@ \ -- 2.7.4