projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11920d2
)
t4030-diff-textconv: Make octal escape sequence more portable
author
Johannes Sixt
<j6t@kdbg.org>
Tue, 2 Dec 2008 08:31:01 +0000
(09:31 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 3 Dec 2008 00:13:16 +0000
(16:13 -0800)
There are printfs around that do not grok '\1', but need '\01'.
Discovered on AIX 4.3.x.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4030-diff-textconv.sh
patch
|
blob
|
history
diff --git
a/t/t4030-diff-textconv.sh
b/t/t4030-diff-textconv.sh
index 0b76e7c97a511e5d5bbedaf54d4bab10a15caeb2..2f27a0ba9ec002b1a6e4d3bd0ed1dc7484d4d14e 100755
(executable)
--- a/
t/t4030-diff-textconv.sh
+++ b/
t/t4030-diff-textconv.sh
@@
-29,7
+29,7
@@
test_expect_success 'setup binary file with history' '
printf "\\0\\n" >file &&
git add file &&
git commit -m one &&
- printf "\\1\\n" >>file &&
+ printf "\\
0
1\\n" >>file &&
git add file &&
git commit -m two
'