##// END OF EJS Templates
py3: fix up test-remotefilelog-cacheprocess.t to not depend on a repr...
Augie Fackler -
r41617:fd2f1f00 default
parent child Browse files
Show More
@@ -56,11 +56,11 b''
56 > log('requested %r\n' % key)
56 > log('requested %r\n' % key)
57 > sys.stdout.flush()
57 > sys.stdout.flush()
58 > elif cmd == 'set':
58 > elif cmd == 'set':
59 > assert False, 'todo writing'
59 > raise Exception('todo writing')
60 > else:
60 > else:
61 > assert False, 'unknown command! %r' % cmd
61 > raise Exception('unknown command! %r' % cmd)
62 > except Exception as e:
62 > except Exception as e:
63 > log('Exception! %r\n' % e)
63 > log('Exception! %s\n' % e)
64 > raise
64 > raise
65 > EOF
65 > EOF
66
66
@@ -79,7 +79,7 b' Test cache keys and cache misses.'
79 requested 'master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
79 requested 'master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
80 requested 'master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
80 requested 'master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
81 got command 'set'
81 got command 'set'
82 Exception! AssertionError('todo writing',)
82 Exception! todo writing
83
83
84 Test cache hits.
84 Test cache hits.
85 $ mv hgcache oldhgcache
85 $ mv hgcache oldhgcache
@@ -110,7 +110,7 b' Test cache keys and cache misses with in'
110 requested 'y\x00master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
110 requested 'y\x00master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
111 requested 'z\x00master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
111 requested 'z\x00master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
112 got command 'set'
112 got command 'set'
113 Exception! AssertionError('todo writing',)
113 Exception! todo writing
114
114
115 Test cache hits with includepath.
115 Test cache hits with includepath.
116 $ mv hgcache oldhgcache
116 $ mv hgcache oldhgcache
General Comments 0
You need to be logged in to leave comments. Login now