From a95d10ec543e344d403461c406dca151da721dce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 4 Dec 2001 17:55:08 +0000 Subject: Don't use diff's -u option. It's not portable. Besides, with GNU diff one can use the DIFF_OPTIONS envvar. --- tests/chgrp/basic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/chgrp') diff --git a/tests/chgrp/basic b/tests/chgrp/basic index 2e5ece7fa..fb4aa774b 100755 --- a/tests/chgrp/basic +++ b/tests/chgrp/basic @@ -85,6 +85,6 @@ changed group of `symlink' to G1 EOF cmp expected actual \ - || { diff -u expected actual 1>&2; fail=1; } + || { diff expected actual 1>&2; fail=1; } (exit $fail); exit -- cgit v1.2.3-54-g00ecf