store/index: and unit test for circular symlink

Check that we bail out early
This commit is contained in:
Dirk-Jan C. Binnema
2023-07-18 23:15:53 +03:00
parent 885903c496
commit 6ad5cccc53
4 changed files with 40 additions and 4 deletions

View File

@ -144,8 +144,11 @@ endif
dependency('cld2', required : false)
# note: these are for the unit-tests
cp=find_program('cp')
mv=find_program('mv')
ln=find_program('ln')
rm=find_program('rm')
awk=find_program(['gawk', 'awk'])
gzip=find_program('gzip')
@ -153,6 +156,7 @@ gzip=find_program('gzip')
config_h_data.set_quoted('CP_PROGRAM', cp.full_path())
config_h_data.set_quoted('MV_PROGRAM', mv.full_path())
config_h_data.set_quoted('RM_PROGRAM', rm.full_path())
config_h_data.set_quoted('LN_PROGRAM', ln.full_path())
config_h_data.set_quoted('AWK_PROGRAM', awk.full_path())
config_h_data.set_quoted('GZIP_PROGRAM', gzip.full_path())