Skip to content

Commit e3836f5

Browse files
authored
[tests] Gtest has been updated to the latest available version (1.17.0) (#1229)
1 parent 69f72df commit e3836f5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[submodule "tools/third-party/google-test"]
22
path = tools/third-party/google-test
33
url = https://github.com/google/googletest.git
4-
branch = v1.14.x
4+
branch = v1.17.x
55
[submodule "tools/third-party/benchmark"]
66
path = tools/third-party/benchmark
77
url = https://github.com/google/benchmark

tools/tests/common/test_cases.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ class ReferenceFixtureWithTestCases
234234
} \
235235
} \
236236
} \
237-
static testing::TestInfo* const test_info_ GTEST_INTERNAL_ATTRIBUTE_MAYBE_UNUSED; \
237+
[[maybe_unused]] static testing::TestInfo* const test_info_; \
238238
}; \
239239
\
240240
testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::test_info_ = \

tools/tests/functional/algorithmic_tests/low_level_api/deflate_with_page_faults.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ class DeflateWithPageFaults : public JobFixture {
9999

100100
QPL_LOW_LEVEL_API_ALGORITHMIC_TEST_F(deflate_with_page_fault, read, DeflateWithPageFaults) {
101101
QPL_SKIP_TEST_FOR(qpl_path_software);
102-
RunTestDeflatePageFaults(READ_SRC_1_PAGE_FAULT);
102+
EXPECT_TRUE(RunTestDeflatePageFaults(READ_SRC_1_PAGE_FAULT));
103103
}
104104

105105
QPL_LOW_LEVEL_API_ALGORITHMIC_TEST_F(deflate_with_page_fault, write, DeflateWithPageFaults) {
106106
QPL_SKIP_TEST_FOR(qpl_path_software);
107-
RunTestDeflatePageFaults(WRITE_PAGE_FAULT);
107+
EXPECT_TRUE(RunTestDeflatePageFaults(WRITE_PAGE_FAULT));
108108
}
109109

110110
} // namespace qpl::test

tools/tests/functional/algorithmic_tests/low_level_api/inflate_with_page_faults.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ class InflateWithPageFaults : public JobFixture {
123123

124124
QPL_LOW_LEVEL_API_ALGORITHMIC_TEST_F(inflate_with_page_fault, read, InflateWithPageFaults) {
125125
QPL_SKIP_TEST_FOR(qpl_path_software);
126-
RunTestInflatePageFaults(READ_SRC_1_PAGE_FAULT);
126+
EXPECT_TRUE(RunTestInflatePageFaults(READ_SRC_1_PAGE_FAULT));
127127
}
128128

129129
QPL_LOW_LEVEL_API_ALGORITHMIC_TEST_F(inflate_with_page_fault, write, InflateWithPageFaults) {
130130
QPL_SKIP_TEST_FOR(qpl_path_software);
131-
RunTestInflatePageFaults(WRITE_PAGE_FAULT);
131+
EXPECT_TRUE(RunTestInflatePageFaults(WRITE_PAGE_FAULT));
132132
}
133133

134134
} // namespace qpl::test

tools/third-party/google-test

Submodule google-test updated 61 files

0 commit comments

Comments
 (0)