tests/test-unified-test.t
branchstable
changeset 45013 bd0f122f3f51
parent 38094 e504fa630860
child 47063 1d075b857c90
equal deleted inserted replaced
45012:5c0d5b48e58c 45013:bd0f122f3f51
    73   cr\r (no-eol) (esc)
    73   cr\r (no-eol) (esc)
    74   \tcrlf (esc)
    74   \tcrlf (esc)
    75   crlf\r (esc)
    75   crlf\r (esc)
    76 #endif
    76 #endif
    77 
    77 
       
    78 Escapes:
       
    79 
       
    80   $ $PYTHON -c 'from mercurial.utils.procutil import stdout; stdout.write(b"\xff")'
       
    81   \xff (no-eol) (esc)
       
    82 
       
    83 Escapes with conditions:
       
    84 
       
    85   $ $PYTHON -c 'from mercurial.utils.procutil import stdout; stdout.write(b"\xff")'
       
    86   \xff (no-eol) (esc) (true !)
       
    87 
    78 Combining esc with other markups - and handling lines ending with \r instead of \n:
    88 Combining esc with other markups - and handling lines ending with \r instead of \n:
    79 
    89 
    80   $ printf 'foo/bar\r'
    90   $ printf 'foo/bar\r'
    81   fo?/bar\r (no-eol) (glob) (esc)
    91   fo?/bar\r (no-eol) (glob) (esc)
    82 #if windows
    92 #if windows