Skip to content

Commit

Permalink
No longer mark tests as not working under sanitizer builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Nov 21, 2023
1 parent 337c86c commit 3291496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unittests/unittest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ TEST_CASE("Cyclic", "[LEAK-FAIL][basics][relations][memory-management]") {
REQUIRE(start == start.ref().ref());
}

TEST_CASE("Invalid_refs", "[LEAK-FAIL][basics][relations]") {
TEST_CASE("Invalid_refs", "[basics][relations]") {
auto store = podio::EventStore();
auto& hits = store.create<ExampleHitCollection>("hits");
auto hit1 = hits.create(0xcaffeeULL, 0., 0., 0., 0.);
Expand Down Expand Up @@ -602,7 +602,7 @@ TEST_CASE("Subset collection can handle subsets", "[subset-colls]") {
}
}

TEST_CASE("Collection iterators work with subset collections", "[LEAK-FAIL][subset-colls]") {
TEST_CASE("Collection iterators work with subset collections", "[subset-colls]") {
auto hits = ExampleHitCollection();
auto hit1 = hits.create(0x42ULL, 0., 0., 0., 0.);
auto hit2 = hits.create(0x42ULL, 1., 1., 1., 1.);
Expand Down

0 comments on commit 3291496

Please sign in to comment.