##// END OF EJS Templates
tests: on windows, run command explicitly in sh for working command substitution...
Simon Heimberg -
r20396:a8e6ab7e default
parent child Browse files
Show More
@@ -267,7 +267,10 b' def obsolete(server):'
267
267
268 runcommand(server, ['up', 'null'])
268 runcommand(server, ['up', 'null'])
269 runcommand(server, ['phase', '-df', 'tip'])
269 runcommand(server, ['phase', '-df', 'tip'])
270 os.system('hg debugobsolete `hg log -r tip --template {node}`')
270 cmd = 'hg debugobsolete `hg log -r tip --template {node}`'
271 if os.name == 'nt':
272 cmd = 'sh -c "%s"' % cmd # run in sh, not cmd.exe
273 os.system(cmd)
271 runcommand(server, ['log', '--hidden'])
274 runcommand(server, ['log', '--hidden'])
272 runcommand(server, ['log'])
275 runcommand(server, ['log'])
273
276
General Comments 0
You need to be logged in to leave comments. Login now