diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-09-20 11:30:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 11:30:55 +0200 |
commit | 6ce358b13c7b8cb3cbec5d1cc036c47eb29828d4 (patch) | |
tree | c96050357c8d5028297dd1665b2ca8346a4f8d0b /src/libstore/tests/path.cc | |
parent | 2a52ec4e928c254338a612a6b40355512298ef38 (diff) | |
parent | b6b2a0aea99995d73f0faa6115fb33a137e57b23 (diff) |
Merge pull request #8569 from vcunat/p/flake-update
flake: update nixpkgs: 22.11 -> 23.05
Diffstat (limited to 'src/libstore/tests/path.cc')
-rw-r--r-- | src/libstore/tests/path.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/tests/path.cc b/src/libstore/tests/path.cc index 430aa0099..efa35ef2b 100644 --- a/src/libstore/tests/path.cc +++ b/src/libstore/tests/path.cc @@ -134,6 +134,8 @@ Gen<StorePath> Arbitrary<StorePath>::arbitrary() namespace nix { +#ifndef COVERAGE + RC_GTEST_FIXTURE_PROP( StorePathTest, prop_regex_accept, @@ -150,4 +152,6 @@ RC_GTEST_FIXTURE_PROP( RC_ASSERT(p == store->parseStorePath(store->printStorePath(p))); } +#endif + } |