Skip to content

Commit 9e5ba6e

Browse files
This does not work: IsSkipped
1 parent 7722990 commit 9e5ba6e

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

test/memspaces/memspace_fixtures.hpp

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,14 @@ struct memspaceProviderTest : ::memspaceGetTest {
8787
void SetUp() override {
8888
::memspaceGetTest::SetUp();
8989

90-
auto [isQuerySupported, memspaceGet] = ::memspaceGetTest::GetParam();
91-
bool restinpiss = isQuerySupported(nodeIds.front());
92-
93-
if (!restinpiss || numa_available() == -1 || numa_all_nodes_ptr == nullptr) {
94-
GTEST_SKIP() << "Dkippig 2222";
90+
// auto [isQuerySupported, memspaceGet] = ::memspaceGetTest::GetParam();
91+
// bool restinpiss = isQuerySupported(nodeIds.front());
92+
93+
// if (!restinpiss || numa_available() == -1 || numa_all_nodes_ptr == nullptr) {
94+
// GTEST_SKIP() << "Dkippig 2222";
95+
// }
96+
if (::memspaceGetTest::IsSkipped()) {
97+
GTEST_SKIP() << "SIPPING I WAS WROOONG";
9598
}
9699

97100
umf_result_t ret =

test/memspaces/memspace_lowest_latency.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static bool canQueryLatency(size_t nodeId) {
3737
}
3838
ret = hwloc_topology_load(topology);
3939
//UT_ASSERTeq(ret, 0);
40-
if (!GTEST_OUT_EQ(ret, 0)) {
40+
if (!GTEST_OUT_NE(ret, 0)) {
4141
return false;
4242
}
4343

0 commit comments

Comments
 (0)