Use python instead of shell printf with \x for test-simplemerge-cmd
authorThomas Arendsen Hein <thomas@intevation.de>
Thu, 19 Apr 2007 12:47:55 +0200
changeset 4363 c6413f8f2f8e
parent 4362 390d110a57b8
child 4364 97962a3e73cf
Use python instead of shell printf with \x for test-simplemerge-cmd Needed e.g. to be compatible with Solaris.
tests/test-simplemerge-cmd
--- a/tests/test-simplemerge-cmd
+++ b/tests/test-simplemerge-cmd
@@ -42,7 +42,7 @@ echo '% too many labels'
 python simplemerge -p -L foo -L bar -L baz conflict-local base conflict-other
 
 echo '% binary file'
-printf '\x00' > binary-local
+python -c "f = file('binary-local', 'w'); f.write('\x00'); f.close()"
 cat orig >> binary-local
 python simplemerge -p binary-local base other