##// 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 69 test-clone-r.t
70 70 test-clone-uncompressed.t
71 71 test-clone-update-order.t
72 test-clone.t
72 73 test-clonebundles.t
73 74 test-commit-amend.t
74 75 test-commit-interactive.t
@@ -642,7 +642,7 b' Inaccessible source'
642 642 $ mkdir a
643 643 $ chmod 000 a
644 644 $ hg clone a b
645 abort: Permission denied: '$TESTTMP/fail/a/.hg'
645 abort: Permission denied: *$TESTTMP/fail/a/.hg* (glob)
646 646 [255]
647 647
648 648 Inaccessible destination
@@ -650,7 +650,7 b' Inaccessible destination'
650 650 $ hg init b
651 651 $ cd b
652 652 $ hg clone . ../a
653 abort: Permission denied: '../a'
653 abort: Permission denied: *../a* (glob)
654 654 [255]
655 655 $ cd ..
656 656 $ chmod 700 a
@@ -665,7 +665,7 b' Source of wrong type'
665 665
666 666 $ mkfifo a
667 667 $ hg clone a b
668 abort: $ENOTDIR$: '$TESTTMP/fail/a/.hg'
668 abort: $ENOTDIR$: *$TESTTMP/fail/a/.hg* (glob)
669 669 [255]
670 670 $ rm a
671 671
@@ -446,7 +446,7 b' conversion to dir without permissions sh'
446 446 $ chmod 000 bogusdir
447 447
448 448 $ hg convert a bogusdir
449 abort: Permission denied: 'bogusdir'
449 abort: Permission denied: *bogusdir* (glob)
450 450 [255]
451 451
452 452 user permissions should succeed
General Comments 0
You need to be logged in to leave comments. Login now