diff options
Diffstat (limited to 'patch-test/test')
-rwxr-xr-x | patch-test/test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patch-test/test b/patch-test/test index 9fd6f5a..1dd4783 100755 --- a/patch-test/test +++ b/patch-test/test @@ -395,10 +395,10 @@ oflagless () cd tmp printf '%s\n' 1 2 3 4 5 > old printf '%s\n' 1 2 3 x 4 5 > new - diff old new > patch-u - $p old < patch-u + diff old new > patch + $p old < patch diff old new > /dev/null - report $? "oflagless -u" + report $? "oflagless" cd .. rm -r tmp } |