##// 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 $ echo 'http://does.not.exist/bundle.hg' > server/.hg/clonebundles.manifest
84 $ echo 'http://does.not.exist/bundle.hg' > server/.hg/clonebundles.manifest
85 $ hg clone http://localhost:$HGPORT 404-url
85 $ hg clone http://localhost:$HGPORT 404-url
86 applying clone bundle from http://does.not.exist/bundle.hg
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 abort: error applying bundle
88 abort: error applying bundle
89 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
89 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
90 [255]
90 [255]
@@ -94,7 +94,7 b' Server is not running aborts'
94 $ echo "http://localhost:$HGPORT1/bundle.hg" > server/.hg/clonebundles.manifest
94 $ echo "http://localhost:$HGPORT1/bundle.hg" > server/.hg/clonebundles.manifest
95 $ hg clone http://localhost:$HGPORT server-not-runner
95 $ hg clone http://localhost:$HGPORT server-not-runner
96 applying clone bundle from http://localhost:$HGPORT1/bundle.hg
96 applying clone bundle from http://localhost:$HGPORT1/bundle.hg
97 error fetching bundle: Connection refused
97 error fetching bundle: * refused* (glob)
98 abort: error applying bundle
98 abort: error applying bundle
99 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
99 (if this error persists, consider contacting the server operator or disable clone bundles via "--config experimental.clonebundles=false")
100 [255]
100 [255]
@@ -339,7 +339,7 b' Corrupt histedit state file'
339 $ mv ../corrupt-histedit .hg/histedit-state
339 $ mv ../corrupt-histedit .hg/histedit-state
340 $ hg histedit --abort
340 $ hg histedit --abort
341 warning: encountered an exception during histedit --abort; the repository may not have been completely cleaned up
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 [255]
343 [255]
344 Histedit state has been exited
344 Histedit state has been exited
345 $ hg summary -q
345 $ hg summary -q
@@ -1158,7 +1158,7 b' Wreak havoc on the unshelve process'
1158 $ rm .hg/unshelverebasestate
1158 $ rm .hg/unshelverebasestate
1159 $ hg unshelve --abort
1159 $ hg unshelve --abort
1160 unshelve of 'default' aborted
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 [255]
1162 [255]
1163 Can the user leave the current state?
1163 Can the user leave the current state?
1164 $ hg up -C .
1164 $ hg up -C .
General Comments 0
You need to be logged in to leave comments. Login now