From: Junkyeong Kim Date: Tue, 19 Mar 2024 02:10:39 +0000 (+0900) Subject: haltest: Fix test execution error X-Git-Tag: accepted/tizen/unified/20240321.142339~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78b9fb9455490cdab3a3647ad46cec5544e93c4f;p=platform%2Fcore%2Fuifw%2Flibtbm.git 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 --- 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@ \