diff options
author | Robert Hensing <robert@roberthensing.nl> | 2024-01-27 11:18:03 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-05-02 18:53:51 +0200 |
commit | 3a058dc4b3f7a8d3f131f2031bf348788ce9206c (patch) | |
tree | 9202bee5e9d5e6ed6a99ae7df41c2dc9dd96706d /tests/unit/libstore-support | |
parent | e2ab89a74b1d6044cea91e91f5c3d5fce203c2e8 (diff) |
Revert "StorePath: reject names starting with '.'"
This reverts commit 24bda0c7b381e1a017023c6f7cb9661fae8560bd.
(cherry picked from commit 9ddd0f2af8fd95e1380027a70d0aa650ea2fd5e4)
Change-Id: Ideb547e2a8ac911cf39d58d3e0c1553867bdd776
Diffstat (limited to 'tests/unit/libstore-support')
-rw-r--r-- | tests/unit/libstore-support/tests/path.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/unit/libstore-support/tests/path.cc b/tests/unit/libstore-support/tests/path.cc index ffc4fc607..bf45ffd91 100644 --- a/tests/unit/libstore-support/tests/path.cc +++ b/tests/unit/libstore-support/tests/path.cc @@ -47,13 +47,8 @@ Gen<StorePathName> Arbitrary<StorePathName>::arbitrary() pre += '-'; break; case 64: - // names aren't permitted to start with a period, - // so just fall through to the next case here - if (c != 0) { - pre += '.'; - break; - } - [[fallthrough]]; + pre += '.'; + break; case 65: pre += '_'; break; |