Skip to content

Commit 3ecb029

Browse files
committed
🔧 ⬆️ cmake:3.5, gtest:v1.16.0,
1 parent 8f5e27c commit 3ecb029

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# (See accompanying file LICENSE_1_0.txt or copy at
66
# http://www.boost.org/LICENSE_1_0.txt)
77
#
8-
cmake_minimum_required(VERSION 2.8.12)
8+
cmake_minimum_required(VERSION 3.5)
99
project(GUnit CXX)
1010

1111
set(MASTER_PROJECT OFF)

libs/gherkin-cpp

libs/googletest

Submodule googletest updated 87 files

libs/json

Submodule json updated 1152 files

test/Detail/ProgUtils.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ TEST(ProgUtils, ShouldReturnProgFullPath) {
2929
}
3030
#endif
3131

32+
#if GUNIT_SHOW_STACK_SIZE > 1
3233
TEST(ProgUtils, ShouldReturnCallStack) {
3334
EXPECT_EQ(std::string{}, call_stack("\n", 0, 0));
3435
EXPECT_EQ(std::string{}, call_stack("\n", 1, 0));
@@ -39,6 +40,7 @@ TEST(ProgUtils, ShouldReturnCallStack) {
3940
call_stack("\n", 1, 2),
4041
testing::MatchesRegex(".*ProgUtils_ShouldReturnCallStack_Test.*"));
4142
}
43+
#endif
4244

4345
} // detail
4446
} // v1

0 commit comments

Comments
 (0)