From 989bea4e12cdc7a2991eae38451e7a1e0a53a180 Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Tue, 19 Mar 2024 11:13:36 +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: I549e7aafba00544d3a4bea8bdc634ee8f9b284e0 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 45f7aa7..341e852 100644 --- a/haltests/Makefile.am +++ b/haltests/Makefile.am @@ -33,7 +33,8 @@ tdm_haltests_CXXFLAGS = \ -I$(top_srcdir)/client \ -I$(top_srcdir)/tools \ -I$(includedir)/gtest \ - -fpermissive + -fpermissive \ + -std=c++14 # The flag -w is used, because there are many warnings in libtdm's sources. # Warnings occur because we build project with g++. # In C++ we need to use explicit types conversion. -- 2.7.4