##// END OF EJS Templates
tests: tolerate differences between Linux and Windows error strings...
Matt Harbison -
r26952:4e566f51 default
parent child Browse files
Show More
@@ -84,7 +84,7 b' Manifest file with invalid URL aborts'
84 84 $ echo 'http://does.not.exist/bundle.hg' > server/.hg/clonebundles.manifest
85 85 $ hg clone http://localhost:$HGPORT 404-url
86 86 applying clone bundle from http://does.not.exist/bundle.hg
87 error fetching bundle: * not known (glob)
87 error fetching bundle: (.* not known|getaddrinfo failed) (re)
88 88 abort: error applying bundle
89 89 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
90 90 [255]
@@ -94,7 +94,7 b' Server is not running aborts'
94 94 $ echo "http://localhost:$HGPORT1/bundle.hg" > server/.hg/clonebundles.manifest
95 95 $ hg clone http://localhost:$HGPORT server-not-runner
96 96 applying clone bundle from http://localhost:$HGPORT1/bundle.hg
97 error fetching bundle: Connection refused
97 error fetching bundle: * refused* (glob)
98 98 abort: error applying bundle
99 99 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
100 100 [255]
@@ -339,7 +339,7 b' Corrupt histedit state file'
339 339 $ mv ../corrupt-histedit .hg/histedit-state
340 340 $ hg histedit --abort
341 341 warning: encountered an exception during histedit --abort; the repository may not have been completely cleaned up
342 abort: No such file or directory: * (glob)
342 abort: .*(No such file or directory:|The system cannot find the file specified).* (re)
343 343 [255]
344 344 Histedit state has been exited
345 345 $ hg summary -q
@@ -1158,7 +1158,7 b' Wreak havoc on the unshelve process'
1158 1158 $ rm .hg/unshelverebasestate
1159 1159 $ hg unshelve --abort
1160 1160 unshelve of 'default' aborted
1161 abort: No such file or directory
1161 abort: (No such file or directory|The system cannot find the file specified) (re)
1162 1162 [255]
1163 1163 Can the user leave the current state?
1164 1164 $ hg up -C .
General Comments 0
You need to be logged in to leave comments. Login now