comparison tests/test-largefiles-cache.t @ 35393:4441705b7111

tests: remove (glob) annotations that were only for '\' matches # skip-blame because this was mechanically rewritten the following script. I ran it on both *.t and *.py, but none of the *.py changes were proper. All *.t ones appear to be, and they run without addition failures on both Windows and Linux. import argparse import os import re ap = argparse.ArgumentParser() ap.add_argument('path', nargs='+') opts = ap.parse_args() globre = re.compile(r'^(.*) \(glob\)(.*)$') for p in opts.path: tmp = p + '.tmp' with open(p, 'rb') as src, open(tmp, 'wb') as dst: for line in src: m = globre.match(line) if not m or '$LOCALIP' in line or '*' in line: dst.write(line) continue if '?' in line[:-3] or ('?' in line[:-3] and line[-3:] != '(?)'): dst.write(line) continue dst.write(m.group(1) + m.group(2) + '\n') os.unlink(p) os.rename(tmp, p)
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 10 Dec 2017 22:50:57 -0500
parents eb586ed5d8ce
children f4e84dfc06fd
comparison
equal deleted inserted replaced
35392:5feb782c7a95 35393:4441705b7111
205 e2fb5f2139d086ded2cb600d5a91a196e76bf020 205 e2fb5f2139d086ded2cb600d5a91a196e76bf020
206 $ mv .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 .. 206 $ mv .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 ..
207 $ echo corruption > .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 207 $ echo corruption > .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020
208 $ hg up -C 208 $ hg up -C
209 getting changed largefiles 209 getting changed largefiles
210 large: data corruption in $TESTTMP/src/.hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 with hash 6a7bb2556144babe3899b25e5428123735bb1e27 (glob) 210 large: data corruption in $TESTTMP/src/.hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 with hash 6a7bb2556144babe3899b25e5428123735bb1e27
211 0 largefiles updated, 0 removed 211 0 largefiles updated, 0 removed
212 0 files updated, 0 files merged, 0 files removed, 0 files unresolved 212 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
213 updated to "cd24c147f45c: modified" 213 updated to "cd24c147f45c: modified"
214 [12] other heads for branch "default" (re) 214 [12] other heads for branch "default" (re)
215 $ hg st 215 $ hg st
226 $ cat hg.pid >> $DAEMON_PIDS 226 $ cat hg.pid >> $DAEMON_PIDS
227 227
228 $ hg push http://localhost:$HGPORT1 -f --config files.usercache=nocache 228 $ hg push http://localhost:$HGPORT1 -f --config files.usercache=nocache
229 pushing to http://localhost:$HGPORT1/ 229 pushing to http://localhost:$HGPORT1/
230 searching for changes 230 searching for changes
231 abort: remotestore: could not open file $TESTTMP/src/.hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020: HTTP Error 403: ssl required (glob) 231 abort: remotestore: could not open file $TESTTMP/src/.hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020: HTTP Error 403: ssl required
232 [255] 232 [255]
233 233
234 $ rm .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020 234 $ rm .hg/largefiles/e2fb5f2139d086ded2cb600d5a91a196e76bf020
235 235
236 Test coverage of 'missing from store': 236 Test coverage of 'missing from store':