Skip to content

Commit b6130da

Browse files
committed
Fixed lingering repop* -> re* names in tests
- test_gc_repoplookahead_progress -> test_gc_relookahead_progress - test_gc_repoplookahead_mutation -> test_gc_relookahead_mutation - test_gc_repoplookahead_relaxed -> test_gc_relookahead_relaxed - test_gc_repopgbmap_progress -> test_gc_regbmap_progress - test_gc_repopgbmap_mutation -> test_gc_regbmap_mutation - test_gc_repopgbmap_relaxed -> test_gc_regbmap_relaxed - test_mount_t_repoplookahead -> test_mount_t_relookahead - test_mount_t_repopgbmap -> test_mount_t_regbmap
1 parent 4ccc8dc commit b6130da

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

tests/test_gc.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if = '''
1414

1515

1616
# test that lookahead can make progress in isolation
17-
[cases.test_gc_repoplookahead_progress]
17+
[cases.test_gc_relookahead_progress]
1818
defines.CKMETA = [false, true]
1919
defines.CKDATA = [false, true]
2020
defines.GC_FLAGS = '''
@@ -83,7 +83,7 @@ code = '''
8383
'''
8484

8585
# test that lookahead dirtying still works with the GC API
86-
[cases.test_gc_repoplookahead_mutation]
86+
[cases.test_gc_relookahead_mutation]
8787
defines.CKMETA = [false, true]
8888
defines.CKDATA = [false, true]
8989
defines.GC_FLAGS = '''
@@ -162,8 +162,8 @@ code = '''
162162
'''
163163

164164
# test that we can relax lookahead repopulation with
165-
# gc_repoplookahead_thresh
166-
[cases.test_gc_repoplookahead_relaxed]
165+
# gc_relookahead_thresh
166+
[cases.test_gc_relookahead_relaxed]
167167
# relax our repop thresh
168168
defines.GC_RELOOKAHEAD_THRESH = [
169169
'-1',
@@ -273,8 +273,8 @@ code = '''
273273
'''
274274

275275

276-
# test that repopgbmap can make progress in isolation
277-
[cases.test_gc_repopgbmap_progress]
276+
# test that regbmap can make progress in isolation
277+
[cases.test_gc_regbmap_progress]
278278
defines.RELOOKAHEAD = [false, true]
279279
defines.CKMETA = [false, true]
280280
defines.CKDATA = [false, true]
@@ -343,8 +343,8 @@ code = '''
343343
lfs3_unmount(&lfs3) => 0;
344344
'''
345345

346-
# test that repopgbmap dirtying still works with the GC API
347-
[cases.test_gc_repopgbmap_mutation]
346+
# test that regbmap dirtying still works with the GC API
347+
[cases.test_gc_regbmap_mutation]
348348
defines.RELOOKAHEAD = [false, true]
349349
defines.CKMETA = [false, true]
350350
defines.CKDATA = [false, true]
@@ -425,8 +425,8 @@ code = '''
425425
lfs3_unmount(&lfs3) => 0;
426426
'''
427427

428-
# test that we can relax gbmap repopulation with gc_repopgbmap_thresh
429-
[cases.test_gc_repopgbmap_relaxed]
428+
# test that we can relax gbmap repopulation with gc_regbmap_thresh
429+
[cases.test_gc_regbmap_relaxed]
430430
# relax our repop thresh
431431
defines.GC_REGBMAP_THRESH = [
432432
'-1',

tests/test_mount.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ code = '''
171171

172172
# test that on-mount traversals do what they say they do
173173

174-
[cases.test_mount_t_repoplookahead]
174+
[cases.test_mount_t_relookahead]
175175
defines.CKMETA = [false, true]
176176
defines.CKDATA = [false, true]
177177
code = '''
@@ -213,7 +213,7 @@ code = '''
213213
lfs3_unmount(&lfs3) => 0;
214214
'''
215215

216-
[cases.test_mount_t_repopgbmap]
216+
[cases.test_mount_t_regbmap]
217217
ifdef = 'LFS3_GBMAP'
218218
defines.CKMETA = [false, true]
219219
defines.CKDATA = [false, true]

0 commit comments

Comments
 (0)