tests/test-simplemerge-cmd
changeset 4363 c6413f8f2f8e
parent 4360 d5c3a70f8422
equal deleted inserted replaced
4362:390d110a57b8 4363:c6413f8f2f8e
    40 
    40 
    41 echo '% too many labels'
    41 echo '% too many labels'
    42 python simplemerge -p -L foo -L bar -L baz conflict-local base conflict-other
    42 python simplemerge -p -L foo -L bar -L baz conflict-local base conflict-other
    43 
    43 
    44 echo '% binary file'
    44 echo '% binary file'
    45 printf '\x00' > binary-local
    45 python -c "f = file('binary-local', 'w'); f.write('\x00'); f.close()"
    46 cat orig >> binary-local
    46 cat orig >> binary-local
    47 python simplemerge -p binary-local base other
    47 python simplemerge -p binary-local base other
    48 
    48 
    49 echo '% binary file --text'
    49 echo '% binary file --text'
    50 python simplemerge -a -p binary-local base other
    50 python simplemerge -a -p binary-local base other