tests/test-mactext.t
changeset 39707 5abc47d4ca6b
parent 36023 adec6374a0b2
child 44642 da9b7f9635a2
equal deleted inserted replaced
39706:030d558c6456 39707:5abc47d4ca6b
    22 
    22 
    23   $ echo hello > f
    23   $ echo hello > f
    24   $ hg add f
    24   $ hg add f
    25   $ hg ci -m 1
    25   $ hg ci -m 1
    26 
    26 
    27   $ $PYTHON unix2mac.py f
    27   $ "$PYTHON" unix2mac.py f
    28   $ hg ci -m 2
    28   $ hg ci -m 2
    29   attempt to commit or push text file(s) using CR line endings
    29   attempt to commit or push text file(s) using CR line endings
    30   in dea860dc51ec: f
    30   in dea860dc51ec: f
    31   transaction abort!
    31   transaction abort!
    32   rollback completed
    32   rollback completed
    33   abort: pretxncommit.cr hook failed
    33   abort: pretxncommit.cr hook failed
    34   [255]
    34   [255]
    35   $ hg cat f | $PYTHON print.py
    35   $ hg cat f | "$PYTHON" print.py
    36   hello<LF>
    36   hello<LF>
    37   $ cat f | $PYTHON print.py
    37   $ cat f | "$PYTHON" print.py
    38   hello<CR>
    38   hello<CR>