haltest: Fix test execution error 60/308160/1
authorJunkyeong Kim <jk0430.kim@samsung.com>
Tue, 19 Mar 2024 02:13:36 +0000 (11:13 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Tue, 19 Mar 2024 02:13:39 +0000 (11:13 +0900)
The gtest version up to 1.14.
Have to match test build version to 1.14.

Change-Id: I549e7aafba00544d3a4bea8bdc634ee8f9b284e0
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
haltests/Makefile.am

index 45f7aa7..341e852 100644 (file)
@@ -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.