##// END OF EJS Templates
py3: glob some difference between py2 and py3 output...
Pulkit Goyal -
r40255:7ba6b880 default
parent child Browse files
Show More
@@ -69,6 +69,7 b' test-clone-pull-corruption.t'
69 test-clone-r.t
69 test-clone-r.t
70 test-clone-uncompressed.t
70 test-clone-uncompressed.t
71 test-clone-update-order.t
71 test-clone-update-order.t
72 test-clone.t
72 test-clonebundles.t
73 test-clonebundles.t
73 test-commit-amend.t
74 test-commit-amend.t
74 test-commit-interactive.t
75 test-commit-interactive.t
@@ -642,7 +642,7 b' Inaccessible source'
642 $ mkdir a
642 $ mkdir a
643 $ chmod 000 a
643 $ chmod 000 a
644 $ hg clone a b
644 $ hg clone a b
645 abort: Permission denied: '$TESTTMP/fail/a/.hg'
645 abort: Permission denied: *$TESTTMP/fail/a/.hg* (glob)
646 [255]
646 [255]
647
647
648 Inaccessible destination
648 Inaccessible destination
@@ -650,7 +650,7 b' Inaccessible destination'
650 $ hg init b
650 $ hg init b
651 $ cd b
651 $ cd b
652 $ hg clone . ../a
652 $ hg clone . ../a
653 abort: Permission denied: '../a'
653 abort: Permission denied: *../a* (glob)
654 [255]
654 [255]
655 $ cd ..
655 $ cd ..
656 $ chmod 700 a
656 $ chmod 700 a
@@ -665,7 +665,7 b' Source of wrong type'
665
665
666 $ mkfifo a
666 $ mkfifo a
667 $ hg clone a b
667 $ hg clone a b
668 abort: $ENOTDIR$: '$TESTTMP/fail/a/.hg'
668 abort: $ENOTDIR$: *$TESTTMP/fail/a/.hg* (glob)
669 [255]
669 [255]
670 $ rm a
670 $ rm a
671
671
@@ -446,7 +446,7 b' conversion to dir without permissions sh'
446 $ chmod 000 bogusdir
446 $ chmod 000 bogusdir
447
447
448 $ hg convert a bogusdir
448 $ hg convert a bogusdir
449 abort: Permission denied: 'bogusdir'
449 abort: Permission denied: *bogusdir* (glob)
450 [255]
450 [255]
451
451
452 user permissions should succeed
452 user permissions should succeed
General Comments 0
You need to be logged in to leave comments. Login now