test-commandserver: generate files with a fixed EOL for test stability

The hashes were different on Windows.
This commit is contained in:
Matt Harbison 2015-10-01 21:49:50 -04:00
parent 6ea942a477
commit 0ad55d4a9e

View File

@ -378,7 +378,10 @@ cache of non-public revisions should be invalidated on repository change
... runcommand(server, ['log', '-qr', 'draft()'])
... # create draft commits by another process
... for i in xrange(5, 7):
... os.system('echo a >> a')
... f = open('a', 'ab')
... f.seek(0, os.SEEK_END)
... f.write('a\n')
... f.close()
... os.system('hg commit -Aqm%d' % i)
... # new commits should be listed as draft revisions
... runcommand(server, ['log', '-qr', 'draft()'])