##// END OF EJS Templates
test-annotate: conditionalize error output for Windows...
Matt Harbison -
r24498:ab3a8ed7 default
parent child Browse files
Show More
@@ -457,16 +457,28 b' annotate renamed file'
457 annotate missing file
457 annotate missing file
458
458
459 $ rm baz
459 $ rm baz
460 #if windows
461 $ hg annotate -ncr "wdir()" baz
462 abort: $TESTTMP\repo\baz: The system cannot find the file specified
463 [255]
464 #else
460 $ hg annotate -ncr "wdir()" baz
465 $ hg annotate -ncr "wdir()" baz
461 abort: No such file or directory: $TESTTMP/repo/baz
466 abort: No such file or directory: $TESTTMP/repo/baz
462 [255]
467 [255]
468 #endif
463
469
464 annotate removed file
470 annotate removed file
465
471
466 $ hg rm baz
472 $ hg rm baz
473 #if windows
474 $ hg annotate -ncr "wdir()" baz
475 abort: $TESTTMP\repo\baz: The system cannot find the file specified
476 [255]
477 #else
467 $ hg annotate -ncr "wdir()" baz
478 $ hg annotate -ncr "wdir()" baz
468 abort: No such file or directory: $TESTTMP/repo/baz
479 abort: No such file or directory: $TESTTMP/repo/baz
469 [255]
480 [255]
481 #endif
470
482
471 Test annotate with whitespace options
483 Test annotate with whitespace options
472
484
General Comments 0
You need to be logged in to leave comments. Login now