--- old/textutils-2.0/configure.in Fri Aug 6 19:22:10 1999 +++ gnu/textutils-2.0/configure.in Sat Oct 20 17:35:24 2001 @@ -23,6 +23,9 @@ AC_AIX AC_MINIX +AC_EXEEXT +AC_OBJEXT + dnl This test must come as early as possible after the compiler configuration dnl tests, because the choice of the file model can (in principle) affect dnl whether functions and headers are available, whether they work, etc. --- old/textutils-2.0/m4/afs.m4 Fri Jan 29 05:00:34 1999 +++ gnu/textutils-2.0/m4/afs.m4 Sat Oct 20 14:24:34 2001 @@ -1,7 +1,7 @@ #serial 1 AC_DEFUN(jm_AFS, - AC_CHECKING(for AFS) + AC_MSG_NOTICE(for AFS) test -d /afs \ && AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.]) ) --- old/textutils-2.0/m4/chown.m4 Sun Feb 7 14:16:28 1999 +++ gnu/textutils-2.0/m4/chown.m4 Sat Dec 1 21:41:50 2001 @@ -9,7 +9,9 @@ [AC_REQUIRE([AC_TYPE_UID_T])dnl test -z "$ac_cv_header_unistd_h" \ && AC_CHECK_HEADERS(unistd.h) - AC_CACHE_CHECK([for working chown], jm_cv_func_working_chown, + dnl if there is no chown(), there can be no working replacement + AC_CHECK_FUNC(chown, + [AC_CACHE_CHECK([for working chown], jm_cv_func_working_chown, [AC_TRY_RUN([ # include # include @@ -47,4 +49,12 @@ AC_DEFINE_UNQUOTED(chown, rpl_chown, [Define to rpl_chown if the replacement function should be used.]) fi + ]) dnl end AC_CHECK_FUNC(chown, ...) + +AH_VERBATIM([z_EMX_REPLACE_CHOWN], +[/* If libc does not support chown(), replace it by a dummy function */ +#if !HAVE_CHOWN && !defined chown +static inline int replace_chown(const char *file, unsigned uid, unsigned gid) { errno = EPERM; return -1; } +#define chown replace_chown +#endif]) ]) --- old/textutils-2.0/m4/lchown.m4 Tue May 19 16:02:58 1998 +++ gnu/textutils-2.0/m4/lchown.m4 Sat Dec 1 17:57:56 2001 @@ -6,5 +6,13 @@ AC_DEFUN(jm_FUNC_LCHOWN, [ AC_REQUIRE([AC_TYPE_UID_T]) - AC_REPLACE_FUNCS(lchown) + + dnl if lchown() does not exist replace it by chown() + dnl otherwise test whether lchown need to be replaced + + AC_CHECK_FUNC([lchown], + AC_REPLACE_FUNCS(lchown), + [AC_DEFINE([lchown], [chown], + [Define to 'chown' if you do no have the 'lchown' function.]) + ]) ]) --- old/textutils-2.0/m4/lstat.m4 Sun Feb 7 14:16:28 1999 +++ gnu/textutils-2.0/m4/lstat.m4 Sat Dec 1 18:23:08 2001 @@ -11,7 +11,11 @@ AC_DEFUN(jm_FUNC_LSTAT, [ - AC_CACHE_CHECK([whether lstat accepts an empty string], + dnl if lstat() does not exist replace it by stat() + dnl otherwise test whether lchown need to be replaced + + AC_CHECK_FUNC(lstat, + [AC_CACHE_CHECK([whether lstat accepts an empty string], jm_cv_func_lstat_empty_string_bug, [AC_TRY_RUN([ # include @@ -37,4 +41,8 @@ file name argument. The lstat from SunOS4.1.4 and the Hurd as of 1998-11-01) do this. ]) fi + ], + [AC_DEFINE([lstat], [stat], + [Define to 'stat' if you do no have the 'lstat' function.]) + ]) dnl end AC_CHECK_FUNC(lstat, ...) ]) --- old/textutils-2.0/m4/progtest.m4 Sat Jul 4 00:35:38 1998 +++ gnu/textutils-2.0/m4/progtest.m4 Sat Oct 6 23:11:22 2001 @@ -2,15 +2,17 @@ # Ulrich Drepper , 1996. # # This file can be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License -# but which still want to provide support for the GNU gettext functionality. -# Please note that the actual code is *not* freely available. +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. -# serial 1 +# serial 2 dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -AC_DEFUN(AM_PATH_PROG_WITH_TEST, +AC_DEFUN([AM_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) @@ -20,17 +22,17 @@ ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + ac_save_IFS=$IFS; IFS="$ac_path_separator" for ac_dir in ifelse([$5], , $PATH, [$5]); do + IFS=$ac_save_IFS test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then + if $as_executable_p $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done - IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" @@ -38,7 +40,7 @@ ;; esac])dnl $1="$ac_cv_path_$1" -if test -n "[$]$1"; then +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) --- old/textutils-2.0/m4/regex.m4 Sat Mar 20 23:25:04 1999 +++ gnu/textutils-2.0/m4/regex.m4 Sat Oct 6 16:44:06 2001 @@ -1,5 +1,3 @@ -#serial 5 - dnl Initially derived from code in GNU grep. dnl Mostly written by Jim Meyering. @@ -16,11 +14,14 @@ # However, if the system regex support is good enough that it passes the # the following run test, then default to *not* using the included regex.c. # If cross compiling, assume the test would fail and use the included - # regex.c. The failing regular expression is from `Spencer ere test #75' - # in grep-2.3. + # regex.c. The first failing regular expression is from `Spencer ere + # test #75' in grep-2.3. + ac_save_LIBS="$LIBS" + AC_SEARCH_LIBS([re_compile_pattern], [regex]) AC_CACHE_CHECK([for working re_compile_pattern], jm_cv_func_working_re_compile_pattern, - AC_TRY_RUN( + + [AC_TRY_RUN( changequote(<<, >>)dnl << #include @@ -35,7 +36,13 @@ three right ones below. Otherwise autoconf-2.14 chokes. */ s = re_compile_pattern ("a[[:]:]]b\n", 9, ®ex); /* This should fail with _Invalid character class name_ error. */ - exit (s ? 0 : 1); + if (!s) + exit (1); + + /* This should succeed, but doesn't for e.g. glibc-2.1.3. */ + s = re_compile_pattern ("{1", 2, ®ex); + + exit (s ? 1 : 0); } >>, changequote([, ])dnl @@ -43,7 +50,9 @@ jm_cv_func_working_re_compile_pattern=yes, jm_cv_func_working_re_compile_pattern=no, dnl When crosscompiling, assume it's broken. - jm_cv_func_working_re_compile_pattern=no)) + jm_cv_func_working_re_compile_pattern=no) + ])dnl AC_CACHE_CHECK + if test $jm_cv_func_working_re_compile_pattern = yes; then ac_use_included_regex=no fi @@ -60,10 +69,21 @@ jm_with_regex=$withval, jm_with_regex=$ac_use_included_regex) if test "$jm_with_regex" = yes; then - AC_SUBST(LIBOBJS) + if test "$ac_use_included_regex" = "no"; then + AC_MSG_NOTICE([option --with-included-regex specified: use included regex]) + else + AC_MSG_NOTICE([use included regex]) + fi + ac_use_included_regex=yes + AC_SUBST(LIBOBJS) LIBOBJS="$LIBOBJS regex.$ac_objext" - fi - ], + dnl restore saved $LIBS + LIBS="$ac_save_LIBS" + else + AC_MSG_NOTICE([use external regex]) + fi + ] ) ] ) + --- old/textutils-2.0/src/cat.c Tue May 18 14:12:02 1999 +++ gnu/textutils-2.0/src/cat.c Mon Nov 26 20:39:20 2001 @@ -532,6 +532,7 @@ {NULL, 0, NULL, 0} }; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/cksum.c Sat Apr 3 05:20:26 1999 +++ gnu/textutils-2.0/src/cksum.c Sat Oct 20 22:13:42 2001 @@ -287,6 +287,7 @@ int i, c; int errors = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/comm.c Sun Jul 4 10:14:52 1999 +++ gnu/textutils-2.0/src/comm.c Sat Oct 20 22:14:08 2001 @@ -228,6 +228,7 @@ { int c; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/csplit.c Fri May 7 19:14:46 1999 +++ gnu/textutils-2.0/src/csplit.c Sat Oct 20 22:14:26 2001 @@ -1378,6 +1378,7 @@ struct sigaction oldact, newact; #endif + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/cut.c Sat Apr 3 17:23:54 1999 +++ gnu/textutils-2.0/src/cut.c Sat Oct 20 23:49:02 2001 @@ -690,6 +690,7 @@ int optc, exit_status = 0; int delim_specified = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/expand.c Sat Apr 3 17:24:20 1999 +++ gnu/textutils-2.0/src/expand.c Sat Oct 20 22:15:52 2001 @@ -334,6 +334,7 @@ convert_entire_line = 1; tab_list = NULL; first_free_tab = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/fmt.c Sat Apr 3 17:25:00 1999 +++ gnu/textutils-2.0/src/fmt.c Sat Oct 20 23:38:44 2001 @@ -307,10 +307,12 @@ }; int -main (register int argc, register char **argv) +/* main (register int argc, register char **argv) */ +main (int argc, char **argv) { int optchar; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/fold.c Sat Apr 3 17:25:40 1999 +++ gnu/textutils-2.0/src/fold.c Sat Oct 20 22:16:28 2001 @@ -237,6 +237,7 @@ int optc; int errs = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/head.c Thu Apr 22 05:25:02 1999 +++ gnu/textutils-2.0/src/head.c Sat Oct 20 22:16:40 2001 @@ -258,6 +258,7 @@ Otherwise, interpret it as the number of bytes. */ int count_lines = 1; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/join.c Sun Jul 4 10:38:02 1999 +++ gnu/textutils-2.0/src/join.c Sat Oct 20 22:16:58 2001 @@ -731,6 +731,7 @@ FILE *fp1, *fp2; int optc, prev_optc = 0, nfiles; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/md5sum.c Mon May 3 17:55:36 1999 +++ gnu/textutils-2.0/src/md5sum.c Sun Nov 25 01:32:50 2001 @@ -467,6 +467,7 @@ #endif /* Setting values of global variables. */ + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/nl.c Sun Jul 4 10:02:54 1999 +++ gnu/textutils-2.0/src/nl.c Sun Nov 25 01:07:14 2001 @@ -448,6 +448,7 @@ int c, exit_status = 0; size_t len; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/od.c Thu Apr 22 02:30:44 1999 +++ gnu/textutils-2.0/src/od.c Sat Oct 20 22:17:54 2001 @@ -1587,6 +1587,7 @@ pseudo_start = 0; #endif + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/paste.c Sat Apr 3 19:42:46 1999 +++ gnu/textutils-2.0/src/paste.c Sat Oct 20 22:18:10 2001 @@ -432,6 +432,7 @@ int optc, exit_status; char default_delims[2], zero_delims[3]; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/pr.c Sun Jul 25 09:19:16 1999 +++ gnu/textutils-2.0/src/pr.c Sat Oct 20 22:18:22 2001 @@ -840,6 +840,7 @@ int old_s = FALSE; char **file_names; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/ptx.c Mon May 3 17:47:00 1999 +++ gnu/textutils-2.0/src/ptx.c Sat Oct 20 22:19:02 2001 @@ -1937,6 +1937,7 @@ /* Decode program options. */ + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/sort.c Thu Aug 5 07:42:48 1999 +++ gnu/textutils-2.0/src/sort.c Sat Oct 20 22:19:16 2001 @@ -1903,6 +1903,7 @@ struct sigaction oldact, newact; #endif /* SA_INTERRUPT */ + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/split.c Sat Apr 3 19:44:10 1999 +++ gnu/textutils-2.0/src/split.c Sat Oct 20 22:19:36 2001 @@ -343,6 +343,7 @@ int c; int digits_optind = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/sum.c Sat Apr 3 19:44:38 1999 +++ gnu/textutils-2.0/src/sum.c Sun Nov 25 01:03:16 2001 @@ -208,6 +208,7 @@ int files_given; int (*sum_func) () = bsd_sum_file; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/sys2.h Mon Jul 26 09:24:32 1999 +++ gnu/textutils-2.0/src/sys2.h Sat Oct 20 18:04:14 2001 @@ -83,11 +83,19 @@ #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c)) #if STDC_HEADERS -# define TOLOWER(Ch) tolower (Ch) -# define TOUPPER(Ch) toupper (Ch) +# ifndef TOLOWER +# define TOLOWER(Ch) tolower (Ch) +# endif +# ifndef TOUPPER +# define TOUPPER(Ch) toupper (Ch) +# endif #else -# define TOLOWER(Ch) (ISUPPER (Ch) ? tolower (Ch) : (Ch)) -# define TOUPPER(Ch) (ISLOWER (Ch) ? toupper (Ch) : (Ch)) +# ifndef TOLOWER +# define TOLOWER(Ch) (ISUPPER (Ch) ? tolower (Ch) : (Ch)) +# endif +# ifndef TOUPPER +# define TOUPPER(Ch) (ISLOWER (Ch) ? toupper (Ch) : (Ch)) +# endif #endif /* ISDIGIT differs from ISDIGIT_LOCALE, as follows: --- old/textutils-2.0/src/system.h Sat May 8 23:25:12 1999 +++ gnu/textutils-2.0/src/system.h Sat Oct 20 22:11:54 2001 @@ -81,7 +81,7 @@ # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH) #endif -#if !defined(HAVE_MKFIFO) +#if !defined(HAVE_MKFIFO) && !defined(mkfifo) # define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0)) #endif @@ -175,10 +175,10 @@ # define O_TEXT _O_TEXT #endif #if O_BINARY -# ifndef __DJGPP__ +# if !defined __DJGPP__ && !defined __EMX__ # define setmode _setmode # define fileno(_fp) _fileno (_fp) -# endif /* not DJGPP */ +# endif /* not DJGPP && not __EMX__ */ # define SET_BINARY(_f) do {if (!isatty(_f)) setmode (_f, O_BINARY);} while (0) # define SET_BINARY2(_f1, _f2) \ do { \ @@ -241,5 +241,14 @@ # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \ ? (statbuf).st_blksize : DEV_BSIZE) #endif /* HAVE_ST_BLKSIZE */ + +#ifndef initialize_main +# ifdef __EMX__ +# define initialize_main(argcp, argvp) \ + { _response(argcp, argvp); _wildcard(argcp, argvp); } +# else /* NOT __EMX__ */ +# define initialize_main(argcp, argvp) +# endif +#endif #include "sys2.h" --- old/textutils-2.0/src/tac.c Sun Jul 4 09:59:24 1999 +++ gnu/textutils-2.0/src/tac.c Sun Nov 25 01:05:48 2001 @@ -52,7 +52,7 @@ #define AUTHORS "Jay Lepreau and David MacKenzie" -#if defined __MSDOS__ || defined _WIN32 +#if defined __MSDOS__ || defined _WIN32 || defined __EMX__ /* Define this to non-zero on systems for which the regular mechanism (of unlinking an open file and expecting to be able to write, seek back to the beginning, then reread it) doesn't work. E.g., on Windows @@ -610,6 +610,7 @@ int optc, errors; int have_read_stdin = 0; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/tail.c Thu Aug 5 14:38:02 1999 +++ gnu/textutils-2.0/src/tail.c Sat Oct 20 22:20:32 2001 @@ -1451,6 +1451,7 @@ struct File_spec *F; int i; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/tr.c Sat Apr 3 19:46:18 1999 +++ gnu/textutils-2.0/src/tr.c Sat Dec 1 17:31:56 2001 @@ -1799,6 +1799,7 @@ struct Spec_list *s1 = &buf1; struct Spec_list *s2 = &buf2; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); @@ -1898,7 +1899,6 @@ non-printable characters, or characters which are stripped away by text-mode reads (like CR and ^Z). */ SET_BINARY2 (STDIN_FILENO, STDOUT_FILENO); - if (squeeze_repeats && non_option_args == 1) { set_initialize (s1, complement, in_squeeze_set); --- old/textutils-2.0/src/tsort.c Tue May 4 14:30:28 1999 +++ gnu/textutils-2.0/src/tsort.c Sun Nov 25 00:59:04 2001 @@ -29,6 +29,7 @@ #include #include +#include #include "system.h" #include "long-options.h" #include "error.h" @@ -456,6 +457,7 @@ { int opt; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/unexpand.c Sat Apr 3 19:46:50 1999 +++ gnu/textutils-2.0/src/unexpand.c Sat Oct 20 22:21:24 2001 @@ -385,6 +385,7 @@ int tabval = -1; /* Value of tabstop being read, or -1. */ int c; /* Option character. */ + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/uniq.c Sun Jul 4 10:02:54 1999 +++ gnu/textutils-2.0/src/uniq.c Sat Oct 20 22:21:34 2001 @@ -284,6 +284,7 @@ int optc; char *infile = "-", *outfile = "-"; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/src/wc.c Tue Jul 20 07:53:30 1999 +++ gnu/textutils-2.0/src/wc.c Sat Oct 20 22:21:44 2001 @@ -304,6 +304,7 @@ int optc; int nfiles; + initialize_main(&argc, &argv); program_name = argv[0]; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); --- old/textutils-2.0/tests/cut/cut-tests Sun Mar 7 05:05:56 1999 +++ gnu/textutils-2.0/tests/cut/cut-tests Sun Oct 21 00:16:28 2001 @@ -24,13 +24,13 @@ $echo "Test 1(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(F)"; fi ;; 1) $echo "Test 1(F) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(F) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test 1(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(|)"; fi ;; 1) $echo "Test 1(|) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(|) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test 1(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(<)"; fi ;; 1) $echo "Test 1(<) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(<) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test 2(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(F)"; fi ;; 1) $echo "Test 2(F) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(F) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test 2(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(|)"; fi ;; 1) $echo "Test 2(|) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(|) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test 2(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(<)"; fi ;; 1) $echo "Test 2(<) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(<) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test 3(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(F)"; fi ;; 1) $echo "Test 3(F) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(F) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test 3(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(|)"; fi ;; 1) $echo "Test 3(|) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(|) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test 3(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(<)"; fi ;; 1) $echo "Test 3(<) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(<) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test 4(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(F)"; fi ;; 1) $echo "Test 4(F) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(F) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test 4(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(|)"; fi ;; 1) $echo "Test 4(|) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(|) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test 4(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(<)"; fi ;; 1) $echo "Test 4(<) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(<) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test 5(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(F)"; fi ;; 1) $echo "Test 5(F) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(F) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test 5(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(|)"; fi ;; 1) $echo "Test 5(|) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(|) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test 5(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(<)"; fi ;; 1) $echo "Test 5(<) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(<) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 6(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(F)"; fi ;; 1) $echo "Test 6(F) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(F) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 6(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(|)"; fi ;; 1) $echo "Test 6(|) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(|) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 6(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(<)"; fi ;; 1) $echo "Test 6(<) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(<) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test 7(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(F)"; fi ;; 1) $echo "Test 7(F) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(F) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test 7(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(|)"; fi ;; 1) $echo "Test 7(|) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(|) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test 7(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(<)"; fi ;; 1) $echo "Test 7(<) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(<) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test 8(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(F)"; fi ;; 1) $echo "Test 8(F) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(F) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test 8(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(|)"; fi ;; 1) $echo "Test 8(|) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(|) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test 8(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(<)"; fi ;; 1) $echo "Test 8(<) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(<) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test 9(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(F)"; fi ;; 1) $echo "Test 9(F) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(F) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test 9(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(|)"; fi ;; 1) $echo "Test 9(|) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(|) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test 9(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(<)"; fi ;; 1) $echo "Test 9(<) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(<) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test a(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a.O $srcdir/a.X > /dev/null 2>&1 + diff -a a.O $srcdir/a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a(F)"; fi ;; 1) $echo "Test a(F) failed: files a.O and $srcdir/a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a(F) may have failed." 1>&2; - $echo The command "cmp a.O $srcdir/a.X" failed. 1>&2 ; + $echo The command "diff -a a.O $srcdir/a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test a(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a.O $srcdir/a.X > /dev/null 2>&1 + diff -a a.O $srcdir/a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a(|)"; fi ;; 1) $echo "Test a(|) failed: files a.O and $srcdir/a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a(|) may have failed." 1>&2; - $echo The command "cmp a.O $srcdir/a.X" failed. 1>&2 ; + $echo The command "diff -a a.O $srcdir/a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test a(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a.O $srcdir/a.X > /dev/null 2>&1 + diff -a a.O $srcdir/a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a(<)"; fi ;; 1) $echo "Test a(<) failed: files a.O and $srcdir/a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a(<) may have failed." 1>&2; - $echo The command "cmp a.O $srcdir/a.X" failed. 1>&2 ; + $echo The command "diff -a a.O $srcdir/a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test b(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b.O $srcdir/b.X > /dev/null 2>&1 + diff -a b.O $srcdir/b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b(F)"; fi ;; 1) $echo "Test b(F) failed: files b.O and $srcdir/b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b(F) may have failed." 1>&2; - $echo The command "cmp b.O $srcdir/b.X" failed. 1>&2 ; + $echo The command "diff -a b.O $srcdir/b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test b(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b.O $srcdir/b.X > /dev/null 2>&1 + diff -a b.O $srcdir/b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b(|)"; fi ;; 1) $echo "Test b(|) failed: files b.O and $srcdir/b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b(|) may have failed." 1>&2; - $echo The command "cmp b.O $srcdir/b.X" failed. 1>&2 ; + $echo The command "diff -a b.O $srcdir/b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test b(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b.O $srcdir/b.X > /dev/null 2>&1 + diff -a b.O $srcdir/b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b(<)"; fi ;; 1) $echo "Test b(<) failed: files b.O and $srcdir/b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b(<) may have failed." 1>&2; - $echo The command "cmp b.O $srcdir/b.X" failed. 1>&2 ; + $echo The command "diff -a b.O $srcdir/b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test c(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c.O $srcdir/c.X > /dev/null 2>&1 + diff -a c.O $srcdir/c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c(F)"; fi ;; 1) $echo "Test c(F) failed: files c.O and $srcdir/c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c(F) may have failed." 1>&2; - $echo The command "cmp c.O $srcdir/c.X" failed. 1>&2 ; + $echo The command "diff -a c.O $srcdir/c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test c(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c.O $srcdir/c.X > /dev/null 2>&1 + diff -a c.O $srcdir/c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c(|)"; fi ;; 1) $echo "Test c(|) failed: files c.O and $srcdir/c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c(|) may have failed." 1>&2; - $echo The command "cmp c.O $srcdir/c.X" failed. 1>&2 ; + $echo The command "diff -a c.O $srcdir/c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test c(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c.O $srcdir/c.X > /dev/null 2>&1 + diff -a c.O $srcdir/c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c(<)"; fi ;; 1) $echo "Test c(<) failed: files c.O and $srcdir/c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c(<) may have failed." 1>&2; - $echo The command "cmp c.O $srcdir/c.X" failed. 1>&2 ; + $echo The command "diff -a c.O $srcdir/c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test d(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp d.O $srcdir/d.X > /dev/null 2>&1 + diff -a d.O $srcdir/d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed d(F)"; fi ;; 1) $echo "Test d(F) failed: files d.O and $srcdir/d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test d(F) may have failed." 1>&2; - $echo The command "cmp d.O $srcdir/d.X" failed. 1>&2 ; + $echo The command "diff -a d.O $srcdir/d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test d(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp d.O $srcdir/d.X > /dev/null 2>&1 + diff -a d.O $srcdir/d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed d(|)"; fi ;; 1) $echo "Test d(|) failed: files d.O and $srcdir/d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test d(|) may have failed." 1>&2; - $echo The command "cmp d.O $srcdir/d.X" failed. 1>&2 ; + $echo The command "diff -a d.O $srcdir/d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test d(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp d.O $srcdir/d.X > /dev/null 2>&1 + diff -a d.O $srcdir/d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed d(<)"; fi ;; 1) $echo "Test d(<) failed: files d.O and $srcdir/d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test d(<) may have failed." 1>&2; - $echo The command "cmp d.O $srcdir/d.X" failed. 1>&2 ; + $echo The command "diff -a d.O $srcdir/d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test e(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp e.O $srcdir/e.X > /dev/null 2>&1 + diff -a e.O $srcdir/e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed e(F)"; fi ;; 1) $echo "Test e(F) failed: files e.O and $srcdir/e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test e(F) may have failed." 1>&2; - $echo The command "cmp e.O $srcdir/e.X" failed. 1>&2 ; + $echo The command "diff -a e.O $srcdir/e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test e(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp e.O $srcdir/e.X > /dev/null 2>&1 + diff -a e.O $srcdir/e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed e(|)"; fi ;; 1) $echo "Test e(|) failed: files e.O and $srcdir/e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test e(|) may have failed." 1>&2; - $echo The command "cmp e.O $srcdir/e.X" failed. 1>&2 ; + $echo The command "diff -a e.O $srcdir/e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test e(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp e.O $srcdir/e.X > /dev/null 2>&1 + diff -a e.O $srcdir/e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed e(<)"; fi ;; 1) $echo "Test e(<) failed: files e.O and $srcdir/e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test e(<) may have failed." 1>&2; - $echo The command "cmp e.O $srcdir/e.X" failed. 1>&2 ; + $echo The command "diff -a e.O $srcdir/e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test f(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp f.O $srcdir/f.X > /dev/null 2>&1 + diff -a f.O $srcdir/f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed f(F)"; fi ;; 1) $echo "Test f(F) failed: files f.O and $srcdir/f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test f(F) may have failed." 1>&2; - $echo The command "cmp f.O $srcdir/f.X" failed. 1>&2 ; + $echo The command "diff -a f.O $srcdir/f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test f(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp f.O $srcdir/f.X > /dev/null 2>&1 + diff -a f.O $srcdir/f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed f(|)"; fi ;; 1) $echo "Test f(|) failed: files f.O and $srcdir/f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test f(|) may have failed." 1>&2; - $echo The command "cmp f.O $srcdir/f.X" failed. 1>&2 ; + $echo The command "diff -a f.O $srcdir/f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test f(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp f.O $srcdir/f.X > /dev/null 2>&1 + diff -a f.O $srcdir/f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed f(<)"; fi ;; 1) $echo "Test f(<) failed: files f.O and $srcdir/f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test f(<) may have failed." 1>&2; - $echo The command "cmp f.O $srcdir/f.X" failed. 1>&2 ; + $echo The command "diff -a f.O $srcdir/f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test g(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp g.O $srcdir/g.X > /dev/null 2>&1 + diff -a g.O $srcdir/g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed g(F)"; fi ;; 1) $echo "Test g(F) failed: files g.O and $srcdir/g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test g(F) may have failed." 1>&2; - $echo The command "cmp g.O $srcdir/g.X" failed. 1>&2 ; + $echo The command "diff -a g.O $srcdir/g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test g(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp g.O $srcdir/g.X > /dev/null 2>&1 + diff -a g.O $srcdir/g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed g(|)"; fi ;; 1) $echo "Test g(|) failed: files g.O and $srcdir/g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test g(|) may have failed." 1>&2; - $echo The command "cmp g.O $srcdir/g.X" failed. 1>&2 ; + $echo The command "diff -a g.O $srcdir/g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test g(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp g.O $srcdir/g.X > /dev/null 2>&1 + diff -a g.O $srcdir/g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed g(<)"; fi ;; 1) $echo "Test g(<) failed: files g.O and $srcdir/g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test g(<) may have failed." 1>&2; - $echo The command "cmp g.O $srcdir/g.X" failed. 1>&2 ; + $echo The command "diff -a g.O $srcdir/g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test h(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp h.O $srcdir/h.X > /dev/null 2>&1 + diff -a h.O $srcdir/h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed h(F)"; fi ;; 1) $echo "Test h(F) failed: files h.O and $srcdir/h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test h(F) may have failed." 1>&2; - $echo The command "cmp h.O $srcdir/h.X" failed. 1>&2 ; + $echo The command "diff -a h.O $srcdir/h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test h(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp h.O $srcdir/h.X > /dev/null 2>&1 + diff -a h.O $srcdir/h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed h(|)"; fi ;; 1) $echo "Test h(|) failed: files h.O and $srcdir/h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test h(|) may have failed." 1>&2; - $echo The command "cmp h.O $srcdir/h.X" failed. 1>&2 ; + $echo The command "diff -a h.O $srcdir/h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test h(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp h.O $srcdir/h.X > /dev/null 2>&1 + diff -a h.O $srcdir/h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed h(<)"; fi ;; 1) $echo "Test h(<) failed: files h.O and $srcdir/h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test h(<) may have failed." 1>&2; - $echo The command "cmp h.O $srcdir/h.X" failed. 1>&2 ; + $echo The command "diff -a h.O $srcdir/h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test i(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i.O $srcdir/i.X > /dev/null 2>&1 + diff -a i.O $srcdir/i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i(F)"; fi ;; 1) $echo "Test i(F) failed: files i.O and $srcdir/i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i(F) may have failed." 1>&2; - $echo The command "cmp i.O $srcdir/i.X" failed. 1>&2 ; + $echo The command "diff -a i.O $srcdir/i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test i(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i.O $srcdir/i.X > /dev/null 2>&1 + diff -a i.O $srcdir/i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i(|)"; fi ;; 1) $echo "Test i(|) failed: files i.O and $srcdir/i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i(|) may have failed." 1>&2; - $echo The command "cmp i.O $srcdir/i.X" failed. 1>&2 ; + $echo The command "diff -a i.O $srcdir/i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test i(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i.O $srcdir/i.X > /dev/null 2>&1 + diff -a i.O $srcdir/i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i(<)"; fi ;; 1) $echo "Test i(<) failed: files i.O and $srcdir/i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i(<) may have failed." 1>&2; - $echo The command "cmp i.O $srcdir/i.X" failed. 1>&2 ; + $echo The command "diff -a i.O $srcdir/i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test j(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp j.O $srcdir/j.X > /dev/null 2>&1 + diff -a j.O $srcdir/j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed j(F)"; fi ;; 1) $echo "Test j(F) failed: files j.O and $srcdir/j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test j(F) may have failed." 1>&2; - $echo The command "cmp j.O $srcdir/j.X" failed. 1>&2 ; + $echo The command "diff -a j.O $srcdir/j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test j(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp j.O $srcdir/j.X > /dev/null 2>&1 + diff -a j.O $srcdir/j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed j(|)"; fi ;; 1) $echo "Test j(|) failed: files j.O and $srcdir/j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test j(|) may have failed." 1>&2; - $echo The command "cmp j.O $srcdir/j.X" failed. 1>&2 ; + $echo The command "diff -a j.O $srcdir/j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test j(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp j.O $srcdir/j.X > /dev/null 2>&1 + diff -a j.O $srcdir/j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed j(<)"; fi ;; 1) $echo "Test j(<) failed: files j.O and $srcdir/j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test j(<) may have failed." 1>&2; - $echo The command "cmp j.O $srcdir/j.X" failed. 1>&2 ; + $echo The command "diff -a j.O $srcdir/j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test k(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp k.O $srcdir/k.X > /dev/null 2>&1 + diff -a k.O $srcdir/k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed k(F)"; fi ;; 1) $echo "Test k(F) failed: files k.O and $srcdir/k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test k(F) may have failed." 1>&2; - $echo The command "cmp k.O $srcdir/k.X" failed. 1>&2 ; + $echo The command "diff -a k.O $srcdir/k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test k(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp k.O $srcdir/k.X > /dev/null 2>&1 + diff -a k.O $srcdir/k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed k(|)"; fi ;; 1) $echo "Test k(|) failed: files k.O and $srcdir/k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test k(|) may have failed." 1>&2; - $echo The command "cmp k.O $srcdir/k.X" failed. 1>&2 ; + $echo The command "diff -a k.O $srcdir/k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test k(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp k.O $srcdir/k.X > /dev/null 2>&1 + diff -a k.O $srcdir/k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed k(<)"; fi ;; 1) $echo "Test k(<) failed: files k.O and $srcdir/k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test k(<) may have failed." 1>&2; - $echo The command "cmp k.O $srcdir/k.X" failed. 1>&2 ; + $echo The command "diff -a k.O $srcdir/k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test l(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp l.O $srcdir/l.X > /dev/null 2>&1 + diff -a l.O $srcdir/l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed l(F)"; fi ;; 1) $echo "Test l(F) failed: files l.O and $srcdir/l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test l(F) may have failed." 1>&2; - $echo The command "cmp l.O $srcdir/l.X" failed. 1>&2 ; + $echo The command "diff -a l.O $srcdir/l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test l(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp l.O $srcdir/l.X > /dev/null 2>&1 + diff -a l.O $srcdir/l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed l(|)"; fi ;; 1) $echo "Test l(|) failed: files l.O and $srcdir/l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test l(|) may have failed." 1>&2; - $echo The command "cmp l.O $srcdir/l.X" failed. 1>&2 ; + $echo The command "diff -a l.O $srcdir/l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test l(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp l.O $srcdir/l.X > /dev/null 2>&1 + diff -a l.O $srcdir/l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed l(<)"; fi ;; 1) $echo "Test l(<) failed: files l.O and $srcdir/l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test l(<) may have failed." 1>&2; - $echo The command "cmp l.O $srcdir/l.X" failed. 1>&2 ; + $echo The command "diff -a l.O $srcdir/l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test m(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp m.O $srcdir/m.X > /dev/null 2>&1 + diff -a m.O $srcdir/m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed m(F)"; fi ;; 1) $echo "Test m(F) failed: files m.O and $srcdir/m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test m(F) may have failed." 1>&2; - $echo The command "cmp m.O $srcdir/m.X" failed. 1>&2 ; + $echo The command "diff -a m.O $srcdir/m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test m(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp m.O $srcdir/m.X > /dev/null 2>&1 + diff -a m.O $srcdir/m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed m(|)"; fi ;; 1) $echo "Test m(|) failed: files m.O and $srcdir/m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test m(|) may have failed." 1>&2; - $echo The command "cmp m.O $srcdir/m.X" failed. 1>&2 ; + $echo The command "diff -a m.O $srcdir/m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test m(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp m.O $srcdir/m.X > /dev/null 2>&1 + diff -a m.O $srcdir/m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed m(<)"; fi ;; 1) $echo "Test m(<) failed: files m.O and $srcdir/m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test m(<) may have failed." 1>&2; - $echo The command "cmp m.O $srcdir/m.X" failed. 1>&2 ; + $echo The command "diff -a m.O $srcdir/m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test n(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n.O $srcdir/n.X > /dev/null 2>&1 + diff -a n.O $srcdir/n.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n(F)"; fi ;; 1) $echo "Test n(F) failed: files n.O and $srcdir/n.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n(F) may have failed." 1>&2; - $echo The command "cmp n.O $srcdir/n.X" failed. 1>&2 ; + $echo The command "diff -a n.O $srcdir/n.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test n(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n.O $srcdir/n.X > /dev/null 2>&1 + diff -a n.O $srcdir/n.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n(|)"; fi ;; 1) $echo "Test n(|) failed: files n.O and $srcdir/n.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n(|) may have failed." 1>&2; - $echo The command "cmp n.O $srcdir/n.X" failed. 1>&2 ; + $echo The command "diff -a n.O $srcdir/n.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test n(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n.O $srcdir/n.X > /dev/null 2>&1 + diff -a n.O $srcdir/n.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n(<)"; fi ;; 1) $echo "Test n(<) failed: files n.O and $srcdir/n.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n(<) may have failed." 1>&2; - $echo The command "cmp n.O $srcdir/n.X" failed. 1>&2 ; + $echo The command "diff -a n.O $srcdir/n.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test o(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o.O $srcdir/o.X > /dev/null 2>&1 + diff -a o.O $srcdir/o.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o(F)"; fi ;; 1) $echo "Test o(F) failed: files o.O and $srcdir/o.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o(F) may have failed." 1>&2; - $echo The command "cmp o.O $srcdir/o.X" failed. 1>&2 ; + $echo The command "diff -a o.O $srcdir/o.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test o(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o.O $srcdir/o.X > /dev/null 2>&1 + diff -a o.O $srcdir/o.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o(|)"; fi ;; 1) $echo "Test o(|) failed: files o.O and $srcdir/o.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o(|) may have failed." 1>&2; - $echo The command "cmp o.O $srcdir/o.X" failed. 1>&2 ; + $echo The command "diff -a o.O $srcdir/o.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test o(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o.O $srcdir/o.X > /dev/null 2>&1 + diff -a o.O $srcdir/o.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o(<)"; fi ;; 1) $echo "Test o(<) failed: files o.O and $srcdir/o.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o(<) may have failed." 1>&2; - $echo The command "cmp o.O $srcdir/o.X" failed. 1>&2 ; + $echo The command "diff -a o.O $srcdir/o.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test p(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp p.O $srcdir/p.X > /dev/null 2>&1 + diff -a p.O $srcdir/p.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed p(F)"; fi ;; 1) $echo "Test p(F) failed: files p.O and $srcdir/p.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test p(F) may have failed." 1>&2; - $echo The command "cmp p.O $srcdir/p.X" failed. 1>&2 ; + $echo The command "diff -a p.O $srcdir/p.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test p(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp p.O $srcdir/p.X > /dev/null 2>&1 + diff -a p.O $srcdir/p.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed p(|)"; fi ;; 1) $echo "Test p(|) failed: files p.O and $srcdir/p.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test p(|) may have failed." 1>&2; - $echo The command "cmp p.O $srcdir/p.X" failed. 1>&2 ; + $echo The command "diff -a p.O $srcdir/p.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test p(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp p.O $srcdir/p.X > /dev/null 2>&1 + diff -a p.O $srcdir/p.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed p(<)"; fi ;; 1) $echo "Test p(<) failed: files p.O and $srcdir/p.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test p(<) may have failed." 1>&2; - $echo The command "cmp p.O $srcdir/p.X" failed. 1>&2 ; + $echo The command "diff -a p.O $srcdir/p.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test q(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp q.O $srcdir/q.X > /dev/null 2>&1 + diff -a q.O $srcdir/q.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed q(F)"; fi ;; 1) $echo "Test q(F) failed: files q.O and $srcdir/q.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test q(F) may have failed." 1>&2; - $echo The command "cmp q.O $srcdir/q.X" failed. 1>&2 ; + $echo The command "diff -a q.O $srcdir/q.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test q(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp q.O $srcdir/q.X > /dev/null 2>&1 + diff -a q.O $srcdir/q.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed q(|)"; fi ;; 1) $echo "Test q(|) failed: files q.O and $srcdir/q.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test q(|) may have failed." 1>&2; - $echo The command "cmp q.O $srcdir/q.X" failed. 1>&2 ; + $echo The command "diff -a q.O $srcdir/q.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test q(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp q.O $srcdir/q.X > /dev/null 2>&1 + diff -a q.O $srcdir/q.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed q(<)"; fi ;; 1) $echo "Test q(<) failed: files q.O and $srcdir/q.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test q(<) may have failed." 1>&2; - $echo The command "cmp q.O $srcdir/q.X" failed. 1>&2 ; + $echo The command "diff -a q.O $srcdir/q.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test r(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp r.O $srcdir/r.X > /dev/null 2>&1 + diff -a r.O $srcdir/r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed r(F)"; fi ;; 1) $echo "Test r(F) failed: files r.O and $srcdir/r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test r(F) may have failed." 1>&2; - $echo The command "cmp r.O $srcdir/r.X" failed. 1>&2 ; + $echo The command "diff -a r.O $srcdir/r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test r(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp r.O $srcdir/r.X > /dev/null 2>&1 + diff -a r.O $srcdir/r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed r(|)"; fi ;; 1) $echo "Test r(|) failed: files r.O and $srcdir/r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test r(|) may have failed." 1>&2; - $echo The command "cmp r.O $srcdir/r.X" failed. 1>&2 ; + $echo The command "diff -a r.O $srcdir/r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test r(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp r.O $srcdir/r.X > /dev/null 2>&1 + diff -a r.O $srcdir/r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed r(<)"; fi ;; 1) $echo "Test r(<) failed: files r.O and $srcdir/r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test r(<) may have failed." 1>&2; - $echo The command "cmp r.O $srcdir/r.X" failed. 1>&2 ; + $echo The command "diff -a r.O $srcdir/r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test s(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp s.O $srcdir/s.X > /dev/null 2>&1 + diff -a s.O $srcdir/s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed s(F)"; fi ;; 1) $echo "Test s(F) failed: files s.O and $srcdir/s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test s(F) may have failed." 1>&2; - $echo The command "cmp s.O $srcdir/s.X" failed. 1>&2 ; + $echo The command "diff -a s.O $srcdir/s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test s(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp s.O $srcdir/s.X > /dev/null 2>&1 + diff -a s.O $srcdir/s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed s(|)"; fi ;; 1) $echo "Test s(|) failed: files s.O and $srcdir/s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test s(|) may have failed." 1>&2; - $echo The command "cmp s.O $srcdir/s.X" failed. 1>&2 ; + $echo The command "diff -a s.O $srcdir/s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test s(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp s.O $srcdir/s.X > /dev/null 2>&1 + diff -a s.O $srcdir/s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed s(<)"; fi ;; 1) $echo "Test s(<) failed: files s.O and $srcdir/s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test s(<) may have failed." 1>&2; - $echo The command "cmp s.O $srcdir/s.X" failed. 1>&2 ; + $echo The command "diff -a s.O $srcdir/s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test t(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp t.O $srcdir/t.X > /dev/null 2>&1 + diff -a t.O $srcdir/t.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed t(F)"; fi ;; 1) $echo "Test t(F) failed: files t.O and $srcdir/t.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test t(F) may have failed." 1>&2; - $echo The command "cmp t.O $srcdir/t.X" failed. 1>&2 ; + $echo The command "diff -a t.O $srcdir/t.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test t(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp t.O $srcdir/t.X > /dev/null 2>&1 + diff -a t.O $srcdir/t.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed t(|)"; fi ;; 1) $echo "Test t(|) failed: files t.O and $srcdir/t.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test t(|) may have failed." 1>&2; - $echo The command "cmp t.O $srcdir/t.X" failed. 1>&2 ; + $echo The command "diff -a t.O $srcdir/t.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test t(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp t.O $srcdir/t.X > /dev/null 2>&1 + diff -a t.O $srcdir/t.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed t(<)"; fi ;; 1) $echo "Test t(<) failed: files t.O and $srcdir/t.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test t(<) may have failed." 1>&2; - $echo The command "cmp t.O $srcdir/t.X" failed. 1>&2 ; + $echo The command "diff -a t.O $srcdir/t.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test u(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp u.O $srcdir/u.X > /dev/null 2>&1 + diff -a u.O $srcdir/u.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed u(F)"; fi ;; 1) $echo "Test u(F) failed: files u.O and $srcdir/u.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test u(F) may have failed." 1>&2; - $echo The command "cmp u.O $srcdir/u.X" failed. 1>&2 ; + $echo The command "diff -a u.O $srcdir/u.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test u(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp u.O $srcdir/u.X > /dev/null 2>&1 + diff -a u.O $srcdir/u.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed u(|)"; fi ;; 1) $echo "Test u(|) failed: files u.O and $srcdir/u.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test u(|) may have failed." 1>&2; - $echo The command "cmp u.O $srcdir/u.X" failed. 1>&2 ; + $echo The command "diff -a u.O $srcdir/u.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test u(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp u.O $srcdir/u.X > /dev/null 2>&1 + diff -a u.O $srcdir/u.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed u(<)"; fi ;; 1) $echo "Test u(<) failed: files u.O and $srcdir/u.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test u(<) may have failed." 1>&2; - $echo The command "cmp u.O $srcdir/u.X" failed. 1>&2 ; + $echo The command "diff -a u.O $srcdir/u.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1554,13 +1554,13 @@ $echo "Test v(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp v.O $srcdir/v.X > /dev/null 2>&1 + diff -a v.O $srcdir/v.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed v(F)"; fi ;; 1) $echo "Test v(F) failed: files v.O and $srcdir/v.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test v(F) may have failed." 1>&2; - $echo The command "cmp v.O $srcdir/v.X" failed. 1>&2 ; + $echo The command "diff -a v.O $srcdir/v.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1571,13 +1571,13 @@ $echo "Test v(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp v.O $srcdir/v.X > /dev/null 2>&1 + diff -a v.O $srcdir/v.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed v(|)"; fi ;; 1) $echo "Test v(|) failed: files v.O and $srcdir/v.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test v(|) may have failed." 1>&2; - $echo The command "cmp v.O $srcdir/v.X" failed. 1>&2 ; + $echo The command "diff -a v.O $srcdir/v.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1588,13 +1588,13 @@ $echo "Test v(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp v.O $srcdir/v.X > /dev/null 2>&1 + diff -a v.O $srcdir/v.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed v(<)"; fi ;; 1) $echo "Test v(<) failed: files v.O and $srcdir/v.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test v(<) may have failed." 1>&2; - $echo The command "cmp v.O $srcdir/v.X" failed. 1>&2 ; + $echo The command "diff -a v.O $srcdir/v.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1605,13 +1605,13 @@ $echo "Test w(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp w.O $srcdir/w.X > /dev/null 2>&1 + diff -a w.O $srcdir/w.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed w(F)"; fi ;; 1) $echo "Test w(F) failed: files w.O and $srcdir/w.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test w(F) may have failed." 1>&2; - $echo The command "cmp w.O $srcdir/w.X" failed. 1>&2 ; + $echo The command "diff -a w.O $srcdir/w.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1622,13 +1622,13 @@ $echo "Test w(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp w.O $srcdir/w.X > /dev/null 2>&1 + diff -a w.O $srcdir/w.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed w(|)"; fi ;; 1) $echo "Test w(|) failed: files w.O and $srcdir/w.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test w(|) may have failed." 1>&2; - $echo The command "cmp w.O $srcdir/w.X" failed. 1>&2 ; + $echo The command "diff -a w.O $srcdir/w.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1639,13 +1639,13 @@ $echo "Test w(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp w.O $srcdir/w.X > /dev/null 2>&1 + diff -a w.O $srcdir/w.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed w(<)"; fi ;; 1) $echo "Test w(<) failed: files w.O and $srcdir/w.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test w(<) may have failed." 1>&2; - $echo The command "cmp w.O $srcdir/w.X" failed. 1>&2 ; + $echo The command "diff -a w.O $srcdir/w.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1656,13 +1656,13 @@ $echo "Test x(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp x.O $srcdir/x.X > /dev/null 2>&1 + diff -a x.O $srcdir/x.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed x(F)"; fi ;; 1) $echo "Test x(F) failed: files x.O and $srcdir/x.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test x(F) may have failed." 1>&2; - $echo The command "cmp x.O $srcdir/x.X" failed. 1>&2 ; + $echo The command "diff -a x.O $srcdir/x.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1673,13 +1673,13 @@ $echo "Test x(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp x.O $srcdir/x.X > /dev/null 2>&1 + diff -a x.O $srcdir/x.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed x(|)"; fi ;; 1) $echo "Test x(|) failed: files x.O and $srcdir/x.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test x(|) may have failed." 1>&2; - $echo The command "cmp x.O $srcdir/x.X" failed. 1>&2 ; + $echo The command "diff -a x.O $srcdir/x.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1690,13 +1690,13 @@ $echo "Test x(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp x.O $srcdir/x.X > /dev/null 2>&1 + diff -a x.O $srcdir/x.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed x(<)"; fi ;; 1) $echo "Test x(<) failed: files x.O and $srcdir/x.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test x(<) may have failed." 1>&2; - $echo The command "cmp x.O $srcdir/x.X" failed. 1>&2 ; + $echo The command "diff -a x.O $srcdir/x.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1707,13 +1707,13 @@ $echo "Test y(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp y.O $srcdir/y.X > /dev/null 2>&1 + diff -a y.O $srcdir/y.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed y(F)"; fi ;; 1) $echo "Test y(F) failed: files y.O and $srcdir/y.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test y(F) may have failed." 1>&2; - $echo The command "cmp y.O $srcdir/y.X" failed. 1>&2 ; + $echo The command "diff -a y.O $srcdir/y.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1724,13 +1724,13 @@ $echo "Test y(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp y.O $srcdir/y.X > /dev/null 2>&1 + diff -a y.O $srcdir/y.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed y(<)"; fi ;; 1) $echo "Test y(<) failed: files y.O and $srcdir/y.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test y(<) may have failed." 1>&2; - $echo The command "cmp y.O $srcdir/y.X" failed. 1>&2 ; + $echo The command "diff -a y.O $srcdir/y.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1741,13 +1741,13 @@ $echo "Test z(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp z.O $srcdir/z.X > /dev/null 2>&1 + diff -a z.O $srcdir/z.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed z(F)"; fi ;; 1) $echo "Test z(F) failed: files z.O and $srcdir/z.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test z(F) may have failed." 1>&2; - $echo The command "cmp z.O $srcdir/z.X" failed. 1>&2 ; + $echo The command "diff -a z.O $srcdir/z.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1758,13 +1758,13 @@ $echo "Test z(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp z.O $srcdir/z.X > /dev/null 2>&1 + diff -a z.O $srcdir/z.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed z(<)"; fi ;; 1) $echo "Test z(<) failed: files z.O and $srcdir/z.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test z(<) may have failed." 1>&2; - $echo The command "cmp z.O $srcdir/z.X" failed. 1>&2 ; + $echo The command "diff -a z.O $srcdir/z.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1775,13 +1775,13 @@ $echo "Test empty-fl(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp empty-fl.O $srcdir/empty-fl.X > /dev/null 2>&1 + diff -a empty-fl.O $srcdir/empty-fl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-fl(F)"; fi ;; 1) $echo "Test empty-fl(F) failed: files empty-fl.O and $srcdir/empty-fl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-fl(F) may have failed." 1>&2; - $echo The command "cmp empty-fl.O $srcdir/empty-fl.X" failed. 1>&2 ; + $echo The command "diff -a empty-fl.O $srcdir/empty-fl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1792,13 +1792,13 @@ $echo "Test empty-fl(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp empty-fl.O $srcdir/empty-fl.X > /dev/null 2>&1 + diff -a empty-fl.O $srcdir/empty-fl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-fl(<)"; fi ;; 1) $echo "Test empty-fl(<) failed: files empty-fl.O and $srcdir/empty-fl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-fl(<) may have failed." 1>&2; - $echo The command "cmp empty-fl.O $srcdir/empty-fl.X" failed. 1>&2 ; + $echo The command "diff -a empty-fl.O $srcdir/empty-fl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1809,13 +1809,13 @@ $echo "Test missing-fl(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp missing-fl.O $srcdir/missing-fl.X > /dev/null 2>&1 + diff -a missing-fl.O $srcdir/missing-fl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed missing-fl(F)"; fi ;; 1) $echo "Test missing-fl(F) failed: files missing-fl.O and $srcdir/missing-fl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test missing-fl(F) may have failed." 1>&2; - $echo The command "cmp missing-fl.O $srcdir/missing-fl.X" failed. 1>&2 ; + $echo The command "diff -a missing-fl.O $srcdir/missing-fl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1826,13 +1826,13 @@ $echo "Test missing-fl(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp missing-fl.O $srcdir/missing-fl.X > /dev/null 2>&1 + diff -a missing-fl.O $srcdir/missing-fl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed missing-fl(<)"; fi ;; 1) $echo "Test missing-fl(<) failed: files missing-fl.O and $srcdir/missing-fl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test missing-fl(<) may have failed." 1>&2; - $echo The command "cmp missing-fl.O $srcdir/missing-fl.X" failed. 1>&2 ; + $echo The command "diff -a missing-fl.O $srcdir/missing-fl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1843,13 +1843,13 @@ $echo "Test empty-bl(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp empty-bl.O $srcdir/empty-bl.X > /dev/null 2>&1 + diff -a empty-bl.O $srcdir/empty-bl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-bl(F)"; fi ;; 1) $echo "Test empty-bl(F) failed: files empty-bl.O and $srcdir/empty-bl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-bl(F) may have failed." 1>&2; - $echo The command "cmp empty-bl.O $srcdir/empty-bl.X" failed. 1>&2 ; + $echo The command "diff -a empty-bl.O $srcdir/empty-bl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1860,13 +1860,13 @@ $echo "Test empty-bl(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp empty-bl.O $srcdir/empty-bl.X > /dev/null 2>&1 + diff -a empty-bl.O $srcdir/empty-bl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-bl(<)"; fi ;; 1) $echo "Test empty-bl(<) failed: files empty-bl.O and $srcdir/empty-bl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-bl(<) may have failed." 1>&2; - $echo The command "cmp empty-bl.O $srcdir/empty-bl.X" failed. 1>&2 ; + $echo The command "diff -a empty-bl.O $srcdir/empty-bl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1877,13 +1877,13 @@ $echo "Test missing-bl(F) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp missing-bl.O $srcdir/missing-bl.X > /dev/null 2>&1 + diff -a missing-bl.O $srcdir/missing-bl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed missing-bl(F)"; fi ;; 1) $echo "Test missing-bl(F) failed: files missing-bl.O and $srcdir/missing-bl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test missing-bl(F) may have failed." 1>&2; - $echo The command "cmp missing-bl.O $srcdir/missing-bl.X" failed. 1>&2 ; + $echo The command "diff -a missing-bl.O $srcdir/missing-bl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1894,13 +1894,13 @@ $echo "Test missing-bl(<) failed: ../../src/cut return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp missing-bl.O $srcdir/missing-bl.X > /dev/null 2>&1 + diff -a missing-bl.O $srcdir/missing-bl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed missing-bl(<)"; fi ;; 1) $echo "Test missing-bl(<) failed: files missing-bl.O and $srcdir/missing-bl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test missing-bl(<) may have failed." 1>&2; - $echo The command "cmp missing-bl.O $srcdir/missing-bl.X" failed. 1>&2 ; + $echo The command "diff -a missing-bl.O $srcdir/missing-bl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1911,13 +1911,13 @@ $echo "Test empty-f1(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 + diff -a empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f1(F)"; fi ;; 1) $echo "Test empty-f1(F) failed: files empty-f1.O and $srcdir/empty-f1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f1(F) may have failed." 1>&2; - $echo The command "cmp empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; + $echo The command "diff -a empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1928,13 +1928,13 @@ $echo "Test empty-f1(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 + diff -a empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f1(|)"; fi ;; 1) $echo "Test empty-f1(|) failed: files empty-f1.O and $srcdir/empty-f1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f1(|) may have failed." 1>&2; - $echo The command "cmp empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; + $echo The command "diff -a empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1945,13 +1945,13 @@ $echo "Test empty-f1(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 + diff -a empty-f1.O $srcdir/empty-f1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f1(<)"; fi ;; 1) $echo "Test empty-f1(<) failed: files empty-f1.O and $srcdir/empty-f1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f1(<) may have failed." 1>&2; - $echo The command "cmp empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; + $echo The command "diff -a empty-f1.O $srcdir/empty-f1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1962,13 +1962,13 @@ $echo "Test empty-f2(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 + diff -a empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f2(F)"; fi ;; 1) $echo "Test empty-f2(F) failed: files empty-f2.O and $srcdir/empty-f2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f2(F) may have failed." 1>&2; - $echo The command "cmp empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; + $echo The command "diff -a empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1979,13 +1979,13 @@ $echo "Test empty-f2(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 + diff -a empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f2(|)"; fi ;; 1) $echo "Test empty-f2(|) failed: files empty-f2.O and $srcdir/empty-f2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f2(|) may have failed." 1>&2; - $echo The command "cmp empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; + $echo The command "diff -a empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1996,13 +1996,13 @@ $echo "Test empty-f2(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 + diff -a empty-f2.O $srcdir/empty-f2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed empty-f2(<)"; fi ;; 1) $echo "Test empty-f2(<) failed: files empty-f2.O and $srcdir/empty-f2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test empty-f2(<) may have failed." 1>&2; - $echo The command "cmp empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; + $echo The command "diff -a empty-f2.O $srcdir/empty-f2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2013,13 +2013,13 @@ $echo "Test o-delim(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 + diff -a o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o-delim(F)"; fi ;; 1) $echo "Test o-delim(F) failed: files o-delim.O and $srcdir/o-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o-delim(F) may have failed." 1>&2; - $echo The command "cmp o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; + $echo The command "diff -a o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2030,13 +2030,13 @@ $echo "Test o-delim(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 + diff -a o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o-delim(|)"; fi ;; 1) $echo "Test o-delim(|) failed: files o-delim.O and $srcdir/o-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o-delim(|) may have failed." 1>&2; - $echo The command "cmp o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; + $echo The command "diff -a o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2047,13 +2047,13 @@ $echo "Test o-delim(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 + diff -a o-delim.O $srcdir/o-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o-delim(<)"; fi ;; 1) $echo "Test o-delim(<) failed: files o-delim.O and $srcdir/o-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o-delim(<) may have failed." 1>&2; - $echo The command "cmp o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; + $echo The command "diff -a o-delim.O $srcdir/o-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2064,13 +2064,13 @@ $echo "Test nul-idelim(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 + diff -a nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-idelim(F)"; fi ;; 1) $echo "Test nul-idelim(F) failed: files nul-idelim.O and $srcdir/nul-idelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-idelim(F) may have failed." 1>&2; - $echo The command "cmp nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2081,13 +2081,13 @@ $echo "Test nul-idelim(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 + diff -a nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-idelim(|)"; fi ;; 1) $echo "Test nul-idelim(|) failed: files nul-idelim.O and $srcdir/nul-idelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-idelim(|) may have failed." 1>&2; - $echo The command "cmp nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2098,13 +2098,13 @@ $echo "Test nul-idelim(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 + diff -a nul-idelim.O $srcdir/nul-idelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-idelim(<)"; fi ;; 1) $echo "Test nul-idelim(<) failed: files nul-idelim.O and $srcdir/nul-idelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-idelim(<) may have failed." 1>&2; - $echo The command "cmp nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-idelim.O $srcdir/nul-idelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2115,13 +2115,13 @@ $echo "Test nul-odelim(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 + diff -a nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-odelim(F)"; fi ;; 1) $echo "Test nul-odelim(F) failed: files nul-odelim.O and $srcdir/nul-odelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-odelim(F) may have failed." 1>&2; - $echo The command "cmp nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2132,13 +2132,13 @@ $echo "Test nul-odelim(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 + diff -a nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-odelim(|)"; fi ;; 1) $echo "Test nul-odelim(|) failed: files nul-odelim.O and $srcdir/nul-odelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-odelim(|) may have failed." 1>&2; - $echo The command "cmp nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2149,13 +2149,13 @@ $echo "Test nul-odelim(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 + diff -a nul-odelim.O $srcdir/nul-odelim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-odelim(<)"; fi ;; 1) $echo "Test nul-odelim(<) failed: files nul-odelim.O and $srcdir/nul-odelim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-odelim(<) may have failed." 1>&2; - $echo The command "cmp nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; + $echo The command "diff -a nul-odelim.O $srcdir/nul-odelim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2166,13 +2166,13 @@ $echo "Test multichar-od(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 + diff -a multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed multichar-od(F)"; fi ;; 1) $echo "Test multichar-od(F) failed: files multichar-od.O and $srcdir/multichar-od.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test multichar-od(F) may have failed." 1>&2; - $echo The command "cmp multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; + $echo The command "diff -a multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2183,13 +2183,13 @@ $echo "Test multichar-od(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 + diff -a multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed multichar-od(|)"; fi ;; 1) $echo "Test multichar-od(|) failed: files multichar-od.O and $srcdir/multichar-od.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test multichar-od(|) may have failed." 1>&2; - $echo The command "cmp multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; + $echo The command "diff -a multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2200,13 +2200,13 @@ $echo "Test multichar-od(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 + diff -a multichar-od.O $srcdir/multichar-od.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed multichar-od(<)"; fi ;; 1) $echo "Test multichar-od(<) failed: files multichar-od.O and $srcdir/multichar-od.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test multichar-od(<) may have failed." 1>&2; - $echo The command "cmp multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; + $echo The command "diff -a multichar-od.O $srcdir/multichar-od.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2217,13 +2217,13 @@ $echo "Test 8bit-delim(F) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 + diff -a 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8bit-delim(F)"; fi ;; 1) $echo "Test 8bit-delim(F) failed: files 8bit-delim.O and $srcdir/8bit-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8bit-delim(F) may have failed." 1>&2; - $echo The command "cmp 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; + $echo The command "diff -a 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2234,13 +2234,13 @@ $echo "Test 8bit-delim(|) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 + diff -a 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8bit-delim(|)"; fi ;; 1) $echo "Test 8bit-delim(|) failed: files 8bit-delim.O and $srcdir/8bit-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8bit-delim(|) may have failed." 1>&2; - $echo The command "cmp 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; + $echo The command "diff -a 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2251,13 +2251,13 @@ $echo "Test 8bit-delim(<) failed: ../../src/cut return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 + diff -a 8bit-delim.O $srcdir/8bit-delim.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8bit-delim(<)"; fi ;; 1) $echo "Test 8bit-delim(<) failed: files 8bit-delim.O and $srcdir/8bit-delim.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8bit-delim(<) may have failed." 1>&2; - $echo The command "cmp 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; + $echo The command "diff -a 8bit-delim.O $srcdir/8bit-delim.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/head/head-tests Fri Jan 29 13:56:18 1999 +++ gnu/textutils-2.0/tests/head/head-tests Sun Oct 21 00:18:04 2001 @@ -24,13 +24,13 @@ $echo "Test idem-0 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp idem-0.O $srcdir/idem-0.X > /dev/null 2>&1 + diff -a idem-0.O $srcdir/idem-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed idem-0"; fi ;; 1) $echo "Test idem-0 failed: files idem-0.O and $srcdir/idem-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test idem-0 may have failed." 1>&2; - $echo The command "cmp idem-0.O $srcdir/idem-0.X" failed. 1>&2 ; + $echo The command "diff -a idem-0.O $srcdir/idem-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test idem-1 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp idem-1.O $srcdir/idem-1.X > /dev/null 2>&1 + diff -a idem-1.O $srcdir/idem-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed idem-1"; fi ;; 1) $echo "Test idem-1 failed: files idem-1.O and $srcdir/idem-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test idem-1 may have failed." 1>&2; - $echo The command "cmp idem-1.O $srcdir/idem-1.X" failed. 1>&2 ; + $echo The command "diff -a idem-1.O $srcdir/idem-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test idem-2 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp idem-2.O $srcdir/idem-2.X > /dev/null 2>&1 + diff -a idem-2.O $srcdir/idem-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed idem-2"; fi ;; 1) $echo "Test idem-2 failed: files idem-2.O and $srcdir/idem-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test idem-2 may have failed." 1>&2; - $echo The command "cmp idem-2.O $srcdir/idem-2.X" failed. 1>&2 ; + $echo The command "diff -a idem-2.O $srcdir/idem-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test idem-3 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp idem-3.O $srcdir/idem-3.X > /dev/null 2>&1 + diff -a idem-3.O $srcdir/idem-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed idem-3"; fi ;; 1) $echo "Test idem-3 failed: files idem-3.O and $srcdir/idem-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test idem-3 may have failed." 1>&2; - $echo The command "cmp idem-3.O $srcdir/idem-3.X" failed. 1>&2 ; + $echo The command "diff -a idem-3.O $srcdir/idem-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test basic-0-10 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0-10.O $srcdir/basic-0-10.X > /dev/null 2>&1 + diff -a basic-0-10.O $srcdir/basic-0-10.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0-10"; fi ;; 1) $echo "Test basic-0-10 failed: files basic-0-10.O and $srcdir/basic-0-10.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0-10 may have failed." 1>&2; - $echo The command "cmp basic-0-10.O $srcdir/basic-0-10.X" failed. 1>&2 ; + $echo The command "diff -a basic-0-10.O $srcdir/basic-0-10.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test basic-0-09 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0-09.O $srcdir/basic-0-09.X > /dev/null 2>&1 + diff -a basic-0-09.O $srcdir/basic-0-09.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0-09"; fi ;; 1) $echo "Test basic-0-09 failed: files basic-0-09.O and $srcdir/basic-0-09.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0-09 may have failed." 1>&2; - $echo The command "cmp basic-0-09.O $srcdir/basic-0-09.X" failed. 1>&2 ; + $echo The command "diff -a basic-0-09.O $srcdir/basic-0-09.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test basic-0-11 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0-11.O $srcdir/basic-0-11.X > /dev/null 2>&1 + diff -a basic-0-11.O $srcdir/basic-0-11.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0-11"; fi ;; 1) $echo "Test basic-0-11 failed: files basic-0-11.O and $srcdir/basic-0-11.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0-11 may have failed." 1>&2; - $echo The command "cmp basic-0-11.O $srcdir/basic-0-11.X" failed. 1>&2 ; + $echo The command "diff -a basic-0-11.O $srcdir/basic-0-11.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test obs-0 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-0.O $srcdir/obs-0.X > /dev/null 2>&1 + diff -a obs-0.O $srcdir/obs-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-0"; fi ;; 1) $echo "Test obs-0 failed: files obs-0.O and $srcdir/obs-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-0 may have failed." 1>&2; - $echo The command "cmp obs-0.O $srcdir/obs-0.X" failed. 1>&2 ; + $echo The command "diff -a obs-0.O $srcdir/obs-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test obs-1 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 + diff -a obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-1"; fi ;; 1) $echo "Test obs-1 failed: files obs-1.O and $srcdir/obs-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-1 may have failed." 1>&2; - $echo The command "cmp obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; + $echo The command "diff -a obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test obs-2 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 + diff -a obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-2"; fi ;; 1) $echo "Test obs-2 failed: files obs-2.O and $srcdir/obs-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-2 may have failed." 1>&2; - $echo The command "cmp obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; + $echo The command "diff -a obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test obs-3 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 + diff -a obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-3"; fi ;; 1) $echo "Test obs-3 failed: files obs-3.O and $srcdir/obs-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-3 may have failed." 1>&2; - $echo The command "cmp obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; + $echo The command "diff -a obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test obs-4 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-4.O $srcdir/in-1024 > /dev/null 2>&1 + diff -a obs-4.O $srcdir/in-1024 > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-4"; fi ;; 1) $echo "Test obs-4 failed: files obs-4.O and $srcdir/in-1024 differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-4 may have failed." 1>&2; - $echo The command "cmp obs-4.O $srcdir/in-1024" failed. 1>&2 ; + $echo The command "diff -a obs-4.O $srcdir/in-1024" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test obs-5 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-5.O $srcdir/in-1024 > /dev/null 2>&1 + diff -a obs-5.O $srcdir/in-1024 > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-5"; fi ;; 1) $echo "Test obs-5 failed: files obs-5.O and $srcdir/in-1024 differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-5 may have failed." 1>&2; - $echo The command "cmp obs-5.O $srcdir/in-1024" failed. 1>&2 ; + $echo The command "diff -a obs-5.O $srcdir/in-1024" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test fail-1 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp fail-1.O $srcdir/fail-1.X > /dev/null 2>&1 + diff -a fail-1.O $srcdir/fail-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed fail-1"; fi ;; 1) $echo "Test fail-1 failed: files fail-1.O and $srcdir/fail-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test fail-1 may have failed." 1>&2; - $echo The command "cmp fail-1.O $srcdir/fail-1.X" failed. 1>&2 ; + $echo The command "diff -a fail-1.O $srcdir/fail-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test null-1 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp null-1.O $srcdir/null-1.X > /dev/null 2>&1 + diff -a null-1.O $srcdir/null-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed null-1"; fi ;; 1) $echo "Test null-1 failed: files null-1.O and $srcdir/null-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test null-1 may have failed." 1>&2; - $echo The command "cmp null-1.O $srcdir/null-1.X" failed. 1>&2 ; + $echo The command "diff -a null-1.O $srcdir/null-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test posix-0 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-0.O $srcdir/posix-0.X > /dev/null 2>&1 + diff -a posix-0.O $srcdir/posix-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-0"; fi ;; 1) $echo "Test posix-0 failed: files posix-0.O and $srcdir/posix-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-0 may have failed." 1>&2; - $echo The command "cmp posix-0.O $srcdir/posix-0.X" failed. 1>&2 ; + $echo The command "diff -a posix-0.O $srcdir/posix-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test posix-1 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-1.O $srcdir/posix-1.X > /dev/null 2>&1 + diff -a posix-1.O $srcdir/posix-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-1"; fi ;; 1) $echo "Test posix-1 failed: files posix-1.O and $srcdir/posix-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-1 may have failed." 1>&2; - $echo The command "cmp posix-1.O $srcdir/posix-1.X" failed. 1>&2 ; + $echo The command "diff -a posix-1.O $srcdir/posix-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test posix-2 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-2.O $srcdir/posix-2.X > /dev/null 2>&1 + diff -a posix-2.O $srcdir/posix-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-2"; fi ;; 1) $echo "Test posix-2 failed: files posix-2.O and $srcdir/posix-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-2 may have failed." 1>&2; - $echo The command "cmp posix-2.O $srcdir/posix-2.X" failed. 1>&2 ; + $echo The command "diff -a posix-2.O $srcdir/posix-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test posix-3 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-3.O $srcdir/posix-3.X > /dev/null 2>&1 + diff -a posix-3.O $srcdir/posix-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-3"; fi ;; 1) $echo "Test posix-3 failed: files posix-3.O and $srcdir/posix-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-3 may have failed." 1>&2; - $echo The command "cmp posix-3.O $srcdir/posix-3.X" failed. 1>&2 ; + $echo The command "diff -a posix-3.O $srcdir/posix-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test posix-4 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-4.O $srcdir/in-1024 > /dev/null 2>&1 + diff -a posix-4.O $srcdir/in-1024 > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-4"; fi ;; 1) $echo "Test posix-4 failed: files posix-4.O and $srcdir/in-1024 differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-4 may have failed." 1>&2; - $echo The command "cmp posix-4.O $srcdir/in-1024" failed. 1>&2 ; + $echo The command "diff -a posix-4.O $srcdir/in-1024" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test posix-5 failed: ../../src/head return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp posix-5.O $srcdir/in-1024 > /dev/null 2>&1 + diff -a posix-5.O $srcdir/in-1024 > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed posix-5"; fi ;; 1) $echo "Test posix-5 failed: files posix-5.O and $srcdir/in-1024 differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test posix-5 may have failed." 1>&2; - $echo The command "cmp posix-5.O $srcdir/in-1024" failed. 1>&2 ; + $echo The command "diff -a posix-5.O $srcdir/in-1024" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/join/join-tests Sat Jul 10 09:10:42 1999 +++ gnu/textutils-2.0/tests/join/join-tests Sun Oct 21 00:18:32 2001 @@ -24,13 +24,13 @@ $echo "Test 1a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1a.O $srcdir/1a.X > /dev/null 2>&1 + diff -a 1a.O $srcdir/1a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1a"; fi ;; 1) $echo "Test 1a failed: files 1a.O and $srcdir/1a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1a may have failed." 1>&2; - $echo The command "cmp 1a.O $srcdir/1a.X" failed. 1>&2 ; + $echo The command "diff -a 1a.O $srcdir/1a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test 1b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1b.O $srcdir/1b.X > /dev/null 2>&1 + diff -a 1b.O $srcdir/1b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1b"; fi ;; 1) $echo "Test 1b failed: files 1b.O and $srcdir/1b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1b may have failed." 1>&2; - $echo The command "cmp 1b.O $srcdir/1b.X" failed. 1>&2 ; + $echo The command "diff -a 1b.O $srcdir/1b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test 1c failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1c.O $srcdir/1c.X > /dev/null 2>&1 + diff -a 1c.O $srcdir/1c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1c"; fi ;; 1) $echo "Test 1c failed: files 1c.O and $srcdir/1c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1c may have failed." 1>&2; - $echo The command "cmp 1c.O $srcdir/1c.X" failed. 1>&2 ; + $echo The command "diff -a 1c.O $srcdir/1c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test 1d failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1d.O $srcdir/1d.X > /dev/null 2>&1 + diff -a 1d.O $srcdir/1d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1d"; fi ;; 1) $echo "Test 1d failed: files 1d.O and $srcdir/1d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1d may have failed." 1>&2; - $echo The command "cmp 1d.O $srcdir/1d.X" failed. 1>&2 ; + $echo The command "diff -a 1d.O $srcdir/1d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test 1e failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1e.O $srcdir/1e.X > /dev/null 2>&1 + diff -a 1e.O $srcdir/1e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1e"; fi ;; 1) $echo "Test 1e failed: files 1e.O and $srcdir/1e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1e may have failed." 1>&2; - $echo The command "cmp 1e.O $srcdir/1e.X" failed. 1>&2 ; + $echo The command "diff -a 1e.O $srcdir/1e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test 1f failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1f.O $srcdir/1f.X > /dev/null 2>&1 + diff -a 1f.O $srcdir/1f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1f"; fi ;; 1) $echo "Test 1f failed: files 1f.O and $srcdir/1f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1f may have failed." 1>&2; - $echo The command "cmp 1f.O $srcdir/1f.X" failed. 1>&2 ; + $echo The command "diff -a 1f.O $srcdir/1f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test 2a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2a.O $srcdir/2a.X > /dev/null 2>&1 + diff -a 2a.O $srcdir/2a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2a"; fi ;; 1) $echo "Test 2a failed: files 2a.O and $srcdir/2a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2a may have failed." 1>&2; - $echo The command "cmp 2a.O $srcdir/2a.X" failed. 1>&2 ; + $echo The command "diff -a 2a.O $srcdir/2a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test 2b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2b.O $srcdir/2b.X > /dev/null 2>&1 + diff -a 2b.O $srcdir/2b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2b"; fi ;; 1) $echo "Test 2b failed: files 2b.O and $srcdir/2b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2b may have failed." 1>&2; - $echo The command "cmp 2b.O $srcdir/2b.X" failed. 1>&2 ; + $echo The command "diff -a 2b.O $srcdir/2b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test 2c failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2c.O $srcdir/2c.X > /dev/null 2>&1 + diff -a 2c.O $srcdir/2c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2c"; fi ;; 1) $echo "Test 2c failed: files 2c.O and $srcdir/2c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2c may have failed." 1>&2; - $echo The command "cmp 2c.O $srcdir/2c.X" failed. 1>&2 ; + $echo The command "diff -a 2c.O $srcdir/2c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test 3a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3a.O $srcdir/3a.X > /dev/null 2>&1 + diff -a 3a.O $srcdir/3a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3a"; fi ;; 1) $echo "Test 3a failed: files 3a.O and $srcdir/3a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3a may have failed." 1>&2; - $echo The command "cmp 3a.O $srcdir/3a.X" failed. 1>&2 ; + $echo The command "diff -a 3a.O $srcdir/3a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test 4a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4a.O $srcdir/4a.X > /dev/null 2>&1 + diff -a 4a.O $srcdir/4a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4a"; fi ;; 1) $echo "Test 4a failed: files 4a.O and $srcdir/4a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4a may have failed." 1>&2; - $echo The command "cmp 4a.O $srcdir/4a.X" failed. 1>&2 ; + $echo The command "diff -a 4a.O $srcdir/4a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test 4b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4b.O $srcdir/4b.X > /dev/null 2>&1 + diff -a 4b.O $srcdir/4b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4b"; fi ;; 1) $echo "Test 4b failed: files 4b.O and $srcdir/4b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4b may have failed." 1>&2; - $echo The command "cmp 4b.O $srcdir/4b.X" failed. 1>&2 ; + $echo The command "diff -a 4b.O $srcdir/4b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test 4c failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4c.O $srcdir/4c.X > /dev/null 2>&1 + diff -a 4c.O $srcdir/4c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4c"; fi ;; 1) $echo "Test 4c failed: files 4c.O and $srcdir/4c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4c may have failed." 1>&2; - $echo The command "cmp 4c.O $srcdir/4c.X" failed. 1>&2 ; + $echo The command "diff -a 4c.O $srcdir/4c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test 4d failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4d.O $srcdir/4d.X > /dev/null 2>&1 + diff -a 4d.O $srcdir/4d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4d"; fi ;; 1) $echo "Test 4d failed: files 4d.O and $srcdir/4d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4d may have failed." 1>&2; - $echo The command "cmp 4d.O $srcdir/4d.X" failed. 1>&2 ; + $echo The command "diff -a 4d.O $srcdir/4d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test 4e failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4e.O $srcdir/4e.X > /dev/null 2>&1 + diff -a 4e.O $srcdir/4e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4e"; fi ;; 1) $echo "Test 4e failed: files 4e.O and $srcdir/4e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4e may have failed." 1>&2; - $echo The command "cmp 4e.O $srcdir/4e.X" failed. 1>&2 ; + $echo The command "diff -a 4e.O $srcdir/4e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 5a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5a.O $srcdir/5a.X > /dev/null 2>&1 + diff -a 5a.O $srcdir/5a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5a"; fi ;; 1) $echo "Test 5a failed: files 5a.O and $srcdir/5a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5a may have failed." 1>&2; - $echo The command "cmp 5a.O $srcdir/5a.X" failed. 1>&2 ; + $echo The command "diff -a 5a.O $srcdir/5a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 5b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5b.O $srcdir/5b.X > /dev/null 2>&1 + diff -a 5b.O $srcdir/5b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5b"; fi ;; 1) $echo "Test 5b failed: files 5b.O and $srcdir/5b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5b may have failed." 1>&2; - $echo The command "cmp 5b.O $srcdir/5b.X" failed. 1>&2 ; + $echo The command "diff -a 5b.O $srcdir/5b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 5c failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5c.O $srcdir/5c.X > /dev/null 2>&1 + diff -a 5c.O $srcdir/5c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5c"; fi ;; 1) $echo "Test 5c failed: files 5c.O and $srcdir/5c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5c may have failed." 1>&2; - $echo The command "cmp 5c.O $srcdir/5c.X" failed. 1>&2 ; + $echo The command "diff -a 5c.O $srcdir/5c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test 5d failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5d.O $srcdir/5d.X > /dev/null 2>&1 + diff -a 5d.O $srcdir/5d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5d"; fi ;; 1) $echo "Test 5d failed: files 5d.O and $srcdir/5d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5d may have failed." 1>&2; - $echo The command "cmp 5d.O $srcdir/5d.X" failed. 1>&2 ; + $echo The command "diff -a 5d.O $srcdir/5d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test 5e failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5e.O $srcdir/5e.X > /dev/null 2>&1 + diff -a 5e.O $srcdir/5e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5e"; fi ;; 1) $echo "Test 5e failed: files 5e.O and $srcdir/5e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5e may have failed." 1>&2; - $echo The command "cmp 5e.O $srcdir/5e.X" failed. 1>&2 ; + $echo The command "diff -a 5e.O $srcdir/5e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test 5f failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5f.O $srcdir/5f.X > /dev/null 2>&1 + diff -a 5f.O $srcdir/5f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5f"; fi ;; 1) $echo "Test 5f failed: files 5f.O and $srcdir/5f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5f may have failed." 1>&2; - $echo The command "cmp 5f.O $srcdir/5f.X" failed. 1>&2 ; + $echo The command "diff -a 5f.O $srcdir/5f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test 5g failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5g.O $srcdir/5g.X > /dev/null 2>&1 + diff -a 5g.O $srcdir/5g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5g"; fi ;; 1) $echo "Test 5g failed: files 5g.O and $srcdir/5g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5g may have failed." 1>&2; - $echo The command "cmp 5g.O $srcdir/5g.X" failed. 1>&2 ; + $echo The command "diff -a 5g.O $srcdir/5g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test 5h failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5h.O $srcdir/5h.X > /dev/null 2>&1 + diff -a 5h.O $srcdir/5h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5h"; fi ;; 1) $echo "Test 5h failed: files 5h.O and $srcdir/5h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5h may have failed." 1>&2; - $echo The command "cmp 5h.O $srcdir/5h.X" failed. 1>&2 ; + $echo The command "diff -a 5h.O $srcdir/5h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test 5i failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5i.O $srcdir/5i.X > /dev/null 2>&1 + diff -a 5i.O $srcdir/5i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5i"; fi ;; 1) $echo "Test 5i failed: files 5i.O and $srcdir/5i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5i may have failed." 1>&2; - $echo The command "cmp 5i.O $srcdir/5i.X" failed. 1>&2 ; + $echo The command "diff -a 5i.O $srcdir/5i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test 5j failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5j.O $srcdir/5j.X > /dev/null 2>&1 + diff -a 5j.O $srcdir/5j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5j"; fi ;; 1) $echo "Test 5j failed: files 5j.O and $srcdir/5j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5j may have failed." 1>&2; - $echo The command "cmp 5j.O $srcdir/5j.X" failed. 1>&2 ; + $echo The command "diff -a 5j.O $srcdir/5j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test 5k failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5k.O $srcdir/5k.X > /dev/null 2>&1 + diff -a 5k.O $srcdir/5k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5k"; fi ;; 1) $echo "Test 5k failed: files 5k.O and $srcdir/5k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5k may have failed." 1>&2; - $echo The command "cmp 5k.O $srcdir/5k.X" failed. 1>&2 ; + $echo The command "diff -a 5k.O $srcdir/5k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test 5l failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5l.O $srcdir/5l.X > /dev/null 2>&1 + diff -a 5l.O $srcdir/5l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5l"; fi ;; 1) $echo "Test 5l failed: files 5l.O and $srcdir/5l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5l may have failed." 1>&2; - $echo The command "cmp 5l.O $srcdir/5l.X" failed. 1>&2 ; + $echo The command "diff -a 5l.O $srcdir/5l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test 5m failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5m.O $srcdir/5m.X > /dev/null 2>&1 + diff -a 5m.O $srcdir/5m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5m"; fi ;; 1) $echo "Test 5m failed: files 5m.O and $srcdir/5m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5m may have failed." 1>&2; - $echo The command "cmp 5m.O $srcdir/5m.X" failed. 1>&2 ; + $echo The command "diff -a 5m.O $srcdir/5m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test 6a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6a.O $srcdir/6a.X > /dev/null 2>&1 + diff -a 6a.O $srcdir/6a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6a"; fi ;; 1) $echo "Test 6a failed: files 6a.O and $srcdir/6a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6a may have failed." 1>&2; - $echo The command "cmp 6a.O $srcdir/6a.X" failed. 1>&2 ; + $echo The command "diff -a 6a.O $srcdir/6a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test 6b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6b.O $srcdir/6b.X > /dev/null 2>&1 + diff -a 6b.O $srcdir/6b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6b"; fi ;; 1) $echo "Test 6b failed: files 6b.O and $srcdir/6b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6b may have failed." 1>&2; - $echo The command "cmp 6b.O $srcdir/6b.X" failed. 1>&2 ; + $echo The command "diff -a 6b.O $srcdir/6b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test 6c failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6c.O $srcdir/6c.X > /dev/null 2>&1 + diff -a 6c.O $srcdir/6c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6c"; fi ;; 1) $echo "Test 6c failed: files 6c.O and $srcdir/6c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6c may have failed." 1>&2; - $echo The command "cmp 6c.O $srcdir/6c.X" failed. 1>&2 ; + $echo The command "diff -a 6c.O $srcdir/6c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test 7a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7a.O $srcdir/7a.X > /dev/null 2>&1 + diff -a 7a.O $srcdir/7a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7a"; fi ;; 1) $echo "Test 7a failed: files 7a.O and $srcdir/7a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7a may have failed." 1>&2; - $echo The command "cmp 7a.O $srcdir/7a.X" failed. 1>&2 ; + $echo The command "diff -a 7a.O $srcdir/7a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test 8a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8a.O $srcdir/8a.X > /dev/null 2>&1 + diff -a 8a.O $srcdir/8a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8a"; fi ;; 1) $echo "Test 8a failed: files 8a.O and $srcdir/8a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8a may have failed." 1>&2; - $echo The command "cmp 8a.O $srcdir/8a.X" failed. 1>&2 ; + $echo The command "diff -a 8a.O $srcdir/8a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test 8b failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8b.O $srcdir/8b.X > /dev/null 2>&1 + diff -a 8b.O $srcdir/8b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8b"; fi ;; 1) $echo "Test 8b failed: files 8b.O and $srcdir/8b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8b may have failed." 1>&2; - $echo The command "cmp 8b.O $srcdir/8b.X" failed. 1>&2 ; + $echo The command "diff -a 8b.O $srcdir/8b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test 9a failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9a.O $srcdir/9a.X > /dev/null 2>&1 + diff -a 9a.O $srcdir/9a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9a"; fi ;; 1) $echo "Test 9a failed: files 9a.O and $srcdir/9a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9a may have failed." 1>&2; - $echo The command "cmp 9a.O $srcdir/9a.X" failed. 1>&2 ; + $echo The command "diff -a 9a.O $srcdir/9a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test trailing-sp failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp trailing-sp.O $srcdir/trailing-sp.X > /dev/null 2>&1 + diff -a trailing-sp.O $srcdir/trailing-sp.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed trailing-sp"; fi ;; 1) $echo "Test trailing-sp failed: files trailing-sp.O and $srcdir/trailing-sp.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test trailing-sp may have failed." 1>&2; - $echo The command "cmp trailing-sp.O $srcdir/trailing-sp.X" failed. 1>&2 ; + $echo The command "diff -a trailing-sp.O $srcdir/trailing-sp.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test sp-vs-blank failed: ../../src/join return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp sp-vs-blank.O $srcdir/sp-vs-blank.X > /dev/null 2>&1 + diff -a sp-vs-blank.O $srcdir/sp-vs-blank.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed sp-vs-blank"; fi ;; 1) $echo "Test sp-vs-blank failed: files sp-vs-blank.O and $srcdir/sp-vs-blank.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test sp-vs-blank may have failed." 1>&2; - $echo The command "cmp sp-vs-blank.O $srcdir/sp-vs-blank.X" failed. 1>&2 ; + $echo The command "diff -a sp-vs-blank.O $srcdir/sp-vs-blank.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/pr/pr-tests Thu Apr 15 13:01:42 1999 +++ gnu/textutils-2.0/tests/pr/pr-tests Sun Oct 21 00:19:48 2001 @@ -24,13 +24,13 @@ $echo "Test 1a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1a.O $srcdir/0F > /dev/null 2>&1 + diff -a 1a.O $srcdir/0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1a"; fi ;; 1) $echo "Test 1a failed: files 1a.O and $srcdir/0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1a may have failed." 1>&2; - $echo The command "cmp 1a.O $srcdir/0F" failed. 1>&2 ; + $echo The command "diff -a 1a.O $srcdir/0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test 1b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1b.O $srcdir/0F > /dev/null 2>&1 + diff -a 1b.O $srcdir/0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1b"; fi ;; 1) $echo "Test 1b failed: files 1b.O and $srcdir/0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1b may have failed." 1>&2; - $echo The command "cmp 1b.O $srcdir/0F" failed. 1>&2 ; + $echo The command "diff -a 1b.O $srcdir/0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test 1c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1c.O $srcdir/3-0F > /dev/null 2>&1 + diff -a 1c.O $srcdir/3-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1c"; fi ;; 1) $echo "Test 1c failed: files 1c.O and $srcdir/3-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1c may have failed." 1>&2; - $echo The command "cmp 1c.O $srcdir/3-0F" failed. 1>&2 ; + $echo The command "diff -a 1c.O $srcdir/3-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test 1d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1d.O $srcdir/3f-0F > /dev/null 2>&1 + diff -a 1d.O $srcdir/3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1d"; fi ;; 1) $echo "Test 1d failed: files 1d.O and $srcdir/3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1d may have failed." 1>&2; - $echo The command "cmp 1d.O $srcdir/3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1d.O $srcdir/3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test 1e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1e.O $srcdir/a3-0F > /dev/null 2>&1 + diff -a 1e.O $srcdir/a3-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1e"; fi ;; 1) $echo "Test 1e failed: files 1e.O and $srcdir/a3-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1e may have failed." 1>&2; - $echo The command "cmp 1e.O $srcdir/a3-0F" failed. 1>&2 ; + $echo The command "diff -a 1e.O $srcdir/a3-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test 1f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1f.O $srcdir/a3f-0F > /dev/null 2>&1 + diff -a 1f.O $srcdir/a3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1f"; fi ;; 1) $echo "Test 1f failed: files 1f.O and $srcdir/a3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1f may have failed." 1>&2; - $echo The command "cmp 1f.O $srcdir/a3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1f.O $srcdir/a3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test 1g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1g.O $srcdir/a3f-0F > /dev/null 2>&1 + diff -a 1g.O $srcdir/a3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1g"; fi ;; 1) $echo "Test 1g failed: files 1g.O and $srcdir/a3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1g may have failed." 1>&2; - $echo The command "cmp 1g.O $srcdir/a3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1g.O $srcdir/a3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test 1h failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1h.O $srcdir/3a3f-0F > /dev/null 2>&1 + diff -a 1h.O $srcdir/3a3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1h"; fi ;; 1) $echo "Test 1h failed: files 1h.O and $srcdir/3a3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1h may have failed." 1>&2; - $echo The command "cmp 1h.O $srcdir/3a3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1h.O $srcdir/3a3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test 1i failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1i.O $srcdir/b3-0F > /dev/null 2>&1 + diff -a 1i.O $srcdir/b3-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1i"; fi ;; 1) $echo "Test 1i failed: files 1i.O and $srcdir/b3-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1i may have failed." 1>&2; - $echo The command "cmp 1i.O $srcdir/b3-0F" failed. 1>&2 ; + $echo The command "diff -a 1i.O $srcdir/b3-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test 1j failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1j.O $srcdir/b3f-0F > /dev/null 2>&1 + diff -a 1j.O $srcdir/b3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1j"; fi ;; 1) $echo "Test 1j failed: files 1j.O and $srcdir/b3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1j may have failed." 1>&2; - $echo The command "cmp 1j.O $srcdir/b3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1j.O $srcdir/b3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test 1k failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1k.O $srcdir/b3f-0F > /dev/null 2>&1 + diff -a 1k.O $srcdir/b3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1k"; fi ;; 1) $echo "Test 1k failed: files 1k.O and $srcdir/b3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1k may have failed." 1>&2; - $echo The command "cmp 1k.O $srcdir/b3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1k.O $srcdir/b3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test 1l failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1l.O $srcdir/3b3f-0F > /dev/null 2>&1 + diff -a 1l.O $srcdir/3b3f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1l"; fi ;; 1) $echo "Test 1l failed: files 1l.O and $srcdir/3b3f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1l may have failed." 1>&2; - $echo The command "cmp 1l.O $srcdir/3b3f-0F" failed. 1>&2 ; + $echo The command "diff -a 1l.O $srcdir/3b3f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test 2a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2a.O $srcdir/0FF > /dev/null 2>&1 + diff -a 2a.O $srcdir/0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2a"; fi ;; 1) $echo "Test 2a failed: files 2a.O and $srcdir/0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2a may have failed." 1>&2; - $echo The command "cmp 2a.O $srcdir/0FF" failed. 1>&2 ; + $echo The command "diff -a 2a.O $srcdir/0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test 2b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2b.O $srcdir/0FF > /dev/null 2>&1 + diff -a 2b.O $srcdir/0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2b"; fi ;; 1) $echo "Test 2b failed: files 2b.O and $srcdir/0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2b may have failed." 1>&2; - $echo The command "cmp 2b.O $srcdir/0FF" failed. 1>&2 ; + $echo The command "diff -a 2b.O $srcdir/0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test 2c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2c.O $srcdir/a3f-0FF > /dev/null 2>&1 + diff -a 2c.O $srcdir/a3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2c"; fi ;; 1) $echo "Test 2c failed: files 2c.O and $srcdir/a3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2c may have failed." 1>&2; - $echo The command "cmp 2c.O $srcdir/a3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2c.O $srcdir/a3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 2d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2d.O $srcdir/a3f-0FF > /dev/null 2>&1 + diff -a 2d.O $srcdir/a3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2d"; fi ;; 1) $echo "Test 2d failed: files 2d.O and $srcdir/a3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2d may have failed." 1>&2; - $echo The command "cmp 2d.O $srcdir/a3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2d.O $srcdir/a3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 2e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2e.O $srcdir/b3f-0FF > /dev/null 2>&1 + diff -a 2e.O $srcdir/b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2e"; fi ;; 1) $echo "Test 2e failed: files 2e.O and $srcdir/b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2e may have failed." 1>&2; - $echo The command "cmp 2e.O $srcdir/b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2e.O $srcdir/b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 2f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2f.O $srcdir/b3f-0FF > /dev/null 2>&1 + diff -a 2f.O $srcdir/b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2f"; fi ;; 1) $echo "Test 2f failed: files 2f.O and $srcdir/b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2f may have failed." 1>&2; - $echo The command "cmp 2f.O $srcdir/b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2f.O $srcdir/b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test 2g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2g.O $srcdir/b3f-0FF > /dev/null 2>&1 + diff -a 2g.O $srcdir/b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2g"; fi ;; 1) $echo "Test 2g failed: files 2g.O and $srcdir/b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2g may have failed." 1>&2; - $echo The command "cmp 2g.O $srcdir/b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2g.O $srcdir/b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test 2h failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2h.O $srcdir/b3f-0FF > /dev/null 2>&1 + diff -a 2h.O $srcdir/b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2h"; fi ;; 1) $echo "Test 2h failed: files 2h.O and $srcdir/b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2h may have failed." 1>&2; - $echo The command "cmp 2h.O $srcdir/b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2h.O $srcdir/b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test 2i failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2i.O $srcdir/3b3f-0FF > /dev/null 2>&1 + diff -a 2i.O $srcdir/3b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2i"; fi ;; 1) $echo "Test 2i failed: files 2i.O and $srcdir/3b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2i may have failed." 1>&2; - $echo The command "cmp 2i.O $srcdir/3b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2i.O $srcdir/3b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test 2j failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2j.O $srcdir/3b3f-0FF > /dev/null 2>&1 + diff -a 2j.O $srcdir/3b3f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2j"; fi ;; 1) $echo "Test 2j failed: files 2j.O and $srcdir/3b3f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2j may have failed." 1>&2; - $echo The command "cmp 2j.O $srcdir/3b3f-0FF" failed. 1>&2 ; + $echo The command "diff -a 2j.O $srcdir/3b3f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test 3a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3a.O $srcdir/FF > /dev/null 2>&1 + diff -a 3a.O $srcdir/FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3a"; fi ;; 1) $echo "Test 3a failed: files 3a.O and $srcdir/FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3a may have failed." 1>&2; - $echo The command "cmp 3a.O $srcdir/FF" failed. 1>&2 ; + $echo The command "diff -a 3a.O $srcdir/FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test 3b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3b.O $srcdir/FF > /dev/null 2>&1 + diff -a 3b.O $srcdir/FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3b"; fi ;; 1) $echo "Test 3b failed: files 3b.O and $srcdir/FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3b may have failed." 1>&2; - $echo The command "cmp 3b.O $srcdir/FF" failed. 1>&2 ; + $echo The command "diff -a 3b.O $srcdir/FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test 3c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3c.O $srcdir/3-FF > /dev/null 2>&1 + diff -a 3c.O $srcdir/3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3c"; fi ;; 1) $echo "Test 3c failed: files 3c.O and $srcdir/3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3c may have failed." 1>&2; - $echo The command "cmp 3c.O $srcdir/3-FF" failed. 1>&2 ; + $echo The command "diff -a 3c.O $srcdir/3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test 3d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3d.O $srcdir/3f-FF > /dev/null 2>&1 + diff -a 3d.O $srcdir/3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3d"; fi ;; 1) $echo "Test 3d failed: files 3d.O and $srcdir/3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3d may have failed." 1>&2; - $echo The command "cmp 3d.O $srcdir/3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3d.O $srcdir/3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test 3e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3e.O $srcdir/a3f-FF > /dev/null 2>&1 + diff -a 3e.O $srcdir/a3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3e"; fi ;; 1) $echo "Test 3e failed: files 3e.O and $srcdir/a3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3e may have failed." 1>&2; - $echo The command "cmp 3e.O $srcdir/a3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3e.O $srcdir/a3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test 3f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3f.O $srcdir/a3f-FF > /dev/null 2>&1 + diff -a 3f.O $srcdir/a3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3f"; fi ;; 1) $echo "Test 3f failed: files 3f.O and $srcdir/a3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3f may have failed." 1>&2; - $echo The command "cmp 3f.O $srcdir/a3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3f.O $srcdir/a3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test 3g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3g.O $srcdir/b3f-FF > /dev/null 2>&1 + diff -a 3g.O $srcdir/b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3g"; fi ;; 1) $echo "Test 3g failed: files 3g.O and $srcdir/b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3g may have failed." 1>&2; - $echo The command "cmp 3g.O $srcdir/b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3g.O $srcdir/b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test 3h failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3h.O $srcdir/b3f-FF > /dev/null 2>&1 + diff -a 3h.O $srcdir/b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3h"; fi ;; 1) $echo "Test 3h failed: files 3h.O and $srcdir/b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3h may have failed." 1>&2; - $echo The command "cmp 3h.O $srcdir/b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3h.O $srcdir/b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test 3i failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3i.O $srcdir/b3f-FF > /dev/null 2>&1 + diff -a 3i.O $srcdir/b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3i"; fi ;; 1) $echo "Test 3i failed: files 3i.O and $srcdir/b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3i may have failed." 1>&2; - $echo The command "cmp 3i.O $srcdir/b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3i.O $srcdir/b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test 3j failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3j.O $srcdir/b3f-FF > /dev/null 2>&1 + diff -a 3j.O $srcdir/b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3j"; fi ;; 1) $echo "Test 3j failed: files 3j.O and $srcdir/b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3j may have failed." 1>&2; - $echo The command "cmp 3j.O $srcdir/b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3j.O $srcdir/b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test 3k failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3k.O $srcdir/b3f-FF > /dev/null 2>&1 + diff -a 3k.O $srcdir/b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3k"; fi ;; 1) $echo "Test 3k failed: files 3k.O and $srcdir/b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3k may have failed." 1>&2; - $echo The command "cmp 3k.O $srcdir/b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3k.O $srcdir/b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test 3l failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3l.O $srcdir/3b3f-FF > /dev/null 2>&1 + diff -a 3l.O $srcdir/3b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3l"; fi ;; 1) $echo "Test 3l failed: files 3l.O and $srcdir/3b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3l may have failed." 1>&2; - $echo The command "cmp 3l.O $srcdir/3b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3l.O $srcdir/3b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test 3m failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3m.O $srcdir/3b3f-FF > /dev/null 2>&1 + diff -a 3m.O $srcdir/3b3f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3m"; fi ;; 1) $echo "Test 3m failed: files 3m.O and $srcdir/3b3f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3m may have failed." 1>&2; - $echo The command "cmp 3m.O $srcdir/3b3f-FF" failed. 1>&2 ; + $echo The command "diff -a 3m.O $srcdir/3b3f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test 3la failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3la.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3la.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3la"; fi ;; 1) $echo "Test 3la failed: files 3la.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3la may have failed." 1>&2; - $echo The command "cmp 3la.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3la.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test 3lb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3lb.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3lb.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3lb"; fi ;; 1) $echo "Test 3lb failed: files 3lb.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3lb may have failed." 1>&2; - $echo The command "cmp 3lb.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3lb.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test 3lc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3lc.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3lc.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3lc"; fi ;; 1) $echo "Test 3lc failed: files 3lc.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3lc may have failed." 1>&2; - $echo The command "cmp 3lc.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3lc.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test 3ld failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ld.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3ld.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ld"; fi ;; 1) $echo "Test 3ld failed: files 3ld.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ld may have failed." 1>&2; - $echo The command "cmp 3ld.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3ld.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test 3le failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3le.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3le.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3le"; fi ;; 1) $echo "Test 3le failed: files 3le.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3le may have failed." 1>&2; - $echo The command "cmp 3le.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3le.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test 3lf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3lf.O $srcdir/l24-FF > /dev/null 2>&1 + diff -a 3lf.O $srcdir/l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3lf"; fi ;; 1) $echo "Test 3lf failed: files 3lf.O and $srcdir/l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3lf may have failed." 1>&2; - $echo The command "cmp 3lf.O $srcdir/l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3lf.O $srcdir/l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test 3aa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3aa.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3aa.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3aa"; fi ;; 1) $echo "Test 3aa failed: files 3aa.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3aa may have failed." 1>&2; - $echo The command "cmp 3aa.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3aa.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test 3ab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ab.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3ab.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ab"; fi ;; 1) $echo "Test 3ab failed: files 3ab.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ab may have failed." 1>&2; - $echo The command "cmp 3ab.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3ab.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test 3ac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ac.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3ac.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ac"; fi ;; 1) $echo "Test 3ac failed: files 3ac.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ac may have failed." 1>&2; - $echo The command "cmp 3ac.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3ac.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test 3ad failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ad.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3ad.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ad"; fi ;; 1) $echo "Test 3ad failed: files 3ad.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ad may have failed." 1>&2; - $echo The command "cmp 3ad.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3ad.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test 3ae failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ae.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3ae.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ae"; fi ;; 1) $echo "Test 3ae failed: files 3ae.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ae may have failed." 1>&2; - $echo The command "cmp 3ae.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3ae.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test 3af failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3af.O $srcdir/a2l17-FF > /dev/null 2>&1 + diff -a 3af.O $srcdir/a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3af"; fi ;; 1) $echo "Test 3af failed: files 3af.O and $srcdir/a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3af may have failed." 1>&2; - $echo The command "cmp 3af.O $srcdir/a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3af.O $srcdir/a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test 3ag failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ag.O $srcdir/a2l15-FF > /dev/null 2>&1 + diff -a 3ag.O $srcdir/a2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ag"; fi ;; 1) $echo "Test 3ag failed: files 3ag.O and $srcdir/a2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ag may have failed." 1>&2; - $echo The command "cmp 3ag.O $srcdir/a2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3ag.O $srcdir/a2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test 3ah failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ah.O $srcdir/a2l15-FF > /dev/null 2>&1 + diff -a 3ah.O $srcdir/a2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ah"; fi ;; 1) $echo "Test 3ah failed: files 3ah.O and $srcdir/a2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ah may have failed." 1>&2; - $echo The command "cmp 3ah.O $srcdir/a2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3ah.O $srcdir/a2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test 3ai failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ai.O $srcdir/a2l15-FF > /dev/null 2>&1 + diff -a 3ai.O $srcdir/a2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ai"; fi ;; 1) $echo "Test 3ai failed: files 3ai.O and $srcdir/a2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ai may have failed." 1>&2; - $echo The command "cmp 3ai.O $srcdir/a2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3ai.O $srcdir/a2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test 3aj failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3aj.O $srcdir/a2l15-FF > /dev/null 2>&1 + diff -a 3aj.O $srcdir/a2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3aj"; fi ;; 1) $echo "Test 3aj failed: files 3aj.O and $srcdir/a2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3aj may have failed." 1>&2; - $echo The command "cmp 3aj.O $srcdir/a2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3aj.O $srcdir/a2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test 3ak failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ak.O $srcdir/a2l15-FF > /dev/null 2>&1 + diff -a 3ak.O $srcdir/a2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ak"; fi ;; 1) $echo "Test 3ak failed: files 3ak.O and $srcdir/a2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ak may have failed." 1>&2; - $echo The command "cmp 3ak.O $srcdir/a2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3ak.O $srcdir/a2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test 3ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3ba.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3ba.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3ba"; fi ;; 1) $echo "Test 3ba failed: files 3ba.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3ba may have failed." 1>&2; - $echo The command "cmp 3ba.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3ba.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test 3bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bb.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3bb.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bb"; fi ;; 1) $echo "Test 3bb failed: files 3bb.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bb may have failed." 1>&2; - $echo The command "cmp 3bb.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3bb.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test 3bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bc.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3bc.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bc"; fi ;; 1) $echo "Test 3bc failed: files 3bc.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bc may have failed." 1>&2; - $echo The command "cmp 3bc.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3bc.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test 3bd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bd.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3bd.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bd"; fi ;; 1) $echo "Test 3bd failed: files 3bd.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bd may have failed." 1>&2; - $echo The command "cmp 3bd.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3bd.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test 3be failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3be.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3be.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3be"; fi ;; 1) $echo "Test 3be failed: files 3be.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3be may have failed." 1>&2; - $echo The command "cmp 3be.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3be.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test 3bf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bf.O $srcdir/b2l17-FF > /dev/null 2>&1 + diff -a 3bf.O $srcdir/b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bf"; fi ;; 1) $echo "Test 3bf failed: files 3bf.O and $srcdir/b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bf may have failed." 1>&2; - $echo The command "cmp 3bf.O $srcdir/b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3bf.O $srcdir/b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test 3bg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bg.O $srcdir/b2l15-FF > /dev/null 2>&1 + diff -a 3bg.O $srcdir/b2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bg"; fi ;; 1) $echo "Test 3bg failed: files 3bg.O and $srcdir/b2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bg may have failed." 1>&2; - $echo The command "cmp 3bg.O $srcdir/b2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3bg.O $srcdir/b2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test 3bh failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bh.O $srcdir/b2l15-FF > /dev/null 2>&1 + diff -a 3bh.O $srcdir/b2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bh"; fi ;; 1) $echo "Test 3bh failed: files 3bh.O and $srcdir/b2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bh may have failed." 1>&2; - $echo The command "cmp 3bh.O $srcdir/b2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3bh.O $srcdir/b2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test 3bi failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bi.O $srcdir/b2l15-FF > /dev/null 2>&1 + diff -a 3bi.O $srcdir/b2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bi"; fi ;; 1) $echo "Test 3bi failed: files 3bi.O and $srcdir/b2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bi may have failed." 1>&2; - $echo The command "cmp 3bi.O $srcdir/b2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3bi.O $srcdir/b2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test 3bj failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bj.O $srcdir/b2l15-FF > /dev/null 2>&1 + diff -a 3bj.O $srcdir/b2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bj"; fi ;; 1) $echo "Test 3bj failed: files 3bj.O and $srcdir/b2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bj may have failed." 1>&2; - $echo The command "cmp 3bj.O $srcdir/b2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3bj.O $srcdir/b2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test 3bk failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3bk.O $srcdir/b2l15-FF > /dev/null 2>&1 + diff -a 3bk.O $srcdir/b2l15-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3bk"; fi ;; 1) $echo "Test 3bk failed: files 3bk.O and $srcdir/b2l15-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3bk may have failed." 1>&2; - $echo The command "cmp 3bk.O $srcdir/b2l15-FF" failed. 1>&2 ; + $echo The command "diff -a 3bk.O $srcdir/b2l15-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test 3Pa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pa.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pa.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pa"; fi ;; 1) $echo "Test 3Pa failed: files 3Pa.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pa may have failed." 1>&2; - $echo The command "cmp 3Pa.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pa.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test 3Pb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pb.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pb.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pb"; fi ;; 1) $echo "Test 3Pb failed: files 3Pb.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pb may have failed." 1>&2; - $echo The command "cmp 3Pb.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pb.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test 3Pc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pc.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pc.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pc"; fi ;; 1) $echo "Test 3Pc failed: files 3Pc.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pc may have failed." 1>&2; - $echo The command "cmp 3Pc.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pc.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test 3Pd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pd.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pd.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pd"; fi ;; 1) $echo "Test 3Pd failed: files 3Pd.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pd may have failed." 1>&2; - $echo The command "cmp 3Pd.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pd.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test 3Pe failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pe.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pe.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pe"; fi ;; 1) $echo "Test 3Pe failed: files 3Pe.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pe may have failed." 1>&2; - $echo The command "cmp 3Pe.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pe.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test 3Pf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pf.O $srcdir/4l24-FF > /dev/null 2>&1 + diff -a 3Pf.O $srcdir/4l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pf"; fi ;; 1) $echo "Test 3Pf failed: files 3Pf.O and $srcdir/4l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pf may have failed." 1>&2; - $echo The command "cmp 3Pf.O $srcdir/4l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pf.O $srcdir/4l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test 3Pg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pg.O $srcdir/4-7l24-FF > /dev/null 2>&1 + diff -a 3Pg.O $srcdir/4-7l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pg"; fi ;; 1) $echo "Test 3Pg failed: files 3Pg.O and $srcdir/4-7l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pg may have failed." 1>&2; - $echo The command "cmp 3Pg.O $srcdir/4-7l24-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pg.O $srcdir/4-7l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test 3Paa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Paa.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Paa.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Paa"; fi ;; 1) $echo "Test 3Paa failed: files 3Paa.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Paa may have failed." 1>&2; - $echo The command "cmp 3Paa.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Paa.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test 3Pab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pab.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Pab.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pab"; fi ;; 1) $echo "Test 3Pab failed: files 3Pab.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pab may have failed." 1>&2; - $echo The command "cmp 3Pab.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pab.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test 3Pac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pac.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Pac.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pac"; fi ;; 1) $echo "Test 3Pac failed: files 3Pac.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pac may have failed." 1>&2; - $echo The command "cmp 3Pac.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pac.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test 3Pad failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pad.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Pad.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pad"; fi ;; 1) $echo "Test 3Pad failed: files 3Pad.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pad may have failed." 1>&2; - $echo The command "cmp 3Pad.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pad.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test 3Pae failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pae.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Pae.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pae"; fi ;; 1) $echo "Test 3Pae failed: files 3Pae.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pae may have failed." 1>&2; - $echo The command "cmp 3Pae.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pae.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test 3Paf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Paf.O $srcdir/3a2l17-FF > /dev/null 2>&1 + diff -a 3Paf.O $srcdir/3a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Paf"; fi ;; 1) $echo "Test 3Paf failed: files 3Paf.O and $srcdir/3a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Paf may have failed." 1>&2; - $echo The command "cmp 3Paf.O $srcdir/3a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Paf.O $srcdir/3a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test 3Pba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pba.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pba.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pba"; fi ;; 1) $echo "Test 3Pba failed: files 3Pba.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pba may have failed." 1>&2; - $echo The command "cmp 3Pba.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pba.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test 3Pbb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pbb.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pbb.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pbb"; fi ;; 1) $echo "Test 3Pbb failed: files 3Pbb.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pbb may have failed." 1>&2; - $echo The command "cmp 3Pbb.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pbb.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test 3Pbc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pbc.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pbc.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pbc"; fi ;; 1) $echo "Test 3Pbc failed: files 3Pbc.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pbc may have failed." 1>&2; - $echo The command "cmp 3Pbc.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pbc.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test 3Pbd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pbd.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pbd.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pbd"; fi ;; 1) $echo "Test 3Pbd failed: files 3Pbd.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pbd may have failed." 1>&2; - $echo The command "cmp 3Pbd.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pbd.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test 3Pbe failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pbe.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pbe.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pbe"; fi ;; 1) $echo "Test 3Pbe failed: files 3Pbe.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pbe may have failed." 1>&2; - $echo The command "cmp 3Pbe.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pbe.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test 3Pbf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3Pbf.O $srcdir/3b2l17-FF > /dev/null 2>&1 + diff -a 3Pbf.O $srcdir/3b2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3Pbf"; fi ;; 1) $echo "Test 3Pbf failed: files 3Pbf.O and $srcdir/3b2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3Pbf may have failed." 1>&2; - $echo The command "cmp 3Pbf.O $srcdir/3b2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 3Pbf.O $srcdir/3b2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test 4a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4a.O $srcdir/l24-t > /dev/null 2>&1 + diff -a 4a.O $srcdir/l24-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4a"; fi ;; 1) $echo "Test 4a failed: files 4a.O and $srcdir/l24-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4a may have failed." 1>&2; - $echo The command "cmp 4a.O $srcdir/l24-t" failed. 1>&2 ; + $echo The command "diff -a 4a.O $srcdir/l24-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test 4b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4b.O $srcdir/l17f-t > /dev/null 2>&1 + diff -a 4b.O $srcdir/l17f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4b"; fi ;; 1) $echo "Test 4b failed: files 4b.O and $srcdir/l17f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4b may have failed." 1>&2; - $echo The command "cmp 4b.O $srcdir/l17f-t" failed. 1>&2 ; + $echo The command "diff -a 4b.O $srcdir/l17f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test 4c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4c.O $srcdir/3l24-t > /dev/null 2>&1 + diff -a 4c.O $srcdir/3l24-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4c"; fi ;; 1) $echo "Test 4c failed: files 4c.O and $srcdir/3l24-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4c may have failed." 1>&2; - $echo The command "cmp 4c.O $srcdir/3l24-t" failed. 1>&2 ; + $echo The command "diff -a 4c.O $srcdir/3l24-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test 4d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4d.O $srcdir/3l17f-t > /dev/null 2>&1 + diff -a 4d.O $srcdir/3l17f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4d"; fi ;; 1) $echo "Test 4d failed: files 4d.O and $srcdir/3l17f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4d may have failed." 1>&2; - $echo The command "cmp 4d.O $srcdir/3l17f-t" failed. 1>&2 ; + $echo The command "diff -a 4d.O $srcdir/3l17f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test 4e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4e.O $srcdir/3-5l17f-t > /dev/null 2>&1 + diff -a 4e.O $srcdir/3-5l17f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4e"; fi ;; 1) $echo "Test 4e failed: files 4e.O and $srcdir/3-5l17f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4e may have failed." 1>&2; - $echo The command "cmp 4e.O $srcdir/3-5l17f-t" failed. 1>&2 ; + $echo The command "diff -a 4e.O $srcdir/3-5l17f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test 4f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4f.O $srcdir/a3l15-t > /dev/null 2>&1 + diff -a 4f.O $srcdir/a3l15-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4f"; fi ;; 1) $echo "Test 4f failed: files 4f.O and $srcdir/a3l15-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4f may have failed." 1>&2; - $echo The command "cmp 4f.O $srcdir/a3l15-t" failed. 1>&2 ; + $echo The command "diff -a 4f.O $srcdir/a3l15-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test 4g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4g.O $srcdir/a3l8f-t > /dev/null 2>&1 + diff -a 4g.O $srcdir/a3l8f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4g"; fi ;; 1) $echo "Test 4g failed: files 4g.O and $srcdir/a3l8f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4g may have failed." 1>&2; - $echo The command "cmp 4g.O $srcdir/a3l8f-t" failed. 1>&2 ; + $echo The command "diff -a 4g.O $srcdir/a3l8f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test 4h failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4h.O $srcdir/3a3l15-t > /dev/null 2>&1 + diff -a 4h.O $srcdir/3a3l15-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4h"; fi ;; 1) $echo "Test 4h failed: files 4h.O and $srcdir/3a3l15-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4h may have failed." 1>&2; - $echo The command "cmp 4h.O $srcdir/3a3l15-t" failed. 1>&2 ; + $echo The command "diff -a 4h.O $srcdir/3a3l15-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1554,13 +1554,13 @@ $echo "Test 4i failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4i.O $srcdir/3a3l8f-t > /dev/null 2>&1 + diff -a 4i.O $srcdir/3a3l8f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4i"; fi ;; 1) $echo "Test 4i failed: files 4i.O and $srcdir/3a3l8f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4i may have failed." 1>&2; - $echo The command "cmp 4i.O $srcdir/3a3l8f-t" failed. 1>&2 ; + $echo The command "diff -a 4i.O $srcdir/3a3l8f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1571,13 +1571,13 @@ $echo "Test 4j failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4j.O $srcdir/b3l15-t > /dev/null 2>&1 + diff -a 4j.O $srcdir/b3l15-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4j"; fi ;; 1) $echo "Test 4j failed: files 4j.O and $srcdir/b3l15-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4j may have failed." 1>&2; - $echo The command "cmp 4j.O $srcdir/b3l15-t" failed. 1>&2 ; + $echo The command "diff -a 4j.O $srcdir/b3l15-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1588,13 +1588,13 @@ $echo "Test 4k failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4k.O $srcdir/b3l8f-t > /dev/null 2>&1 + diff -a 4k.O $srcdir/b3l8f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4k"; fi ;; 1) $echo "Test 4k failed: files 4k.O and $srcdir/b3l8f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4k may have failed." 1>&2; - $echo The command "cmp 4k.O $srcdir/b3l8f-t" failed. 1>&2 ; + $echo The command "diff -a 4k.O $srcdir/b3l8f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1605,13 +1605,13 @@ $echo "Test 4l failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4l.O $srcdir/3b3l15-t > /dev/null 2>&1 + diff -a 4l.O $srcdir/3b3l15-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4l"; fi ;; 1) $echo "Test 4l failed: files 4l.O and $srcdir/3b3l15-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4l may have failed." 1>&2; - $echo The command "cmp 4l.O $srcdir/3b3l15-t" failed. 1>&2 ; + $echo The command "diff -a 4l.O $srcdir/3b3l15-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1622,13 +1622,13 @@ $echo "Test 4m failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4m.O $srcdir/3b3l8f-t > /dev/null 2>&1 + diff -a 4m.O $srcdir/3b3l8f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4m"; fi ;; 1) $echo "Test 4m failed: files 4m.O and $srcdir/3b3l8f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4m may have failed." 1>&2; - $echo The command "cmp 4m.O $srcdir/3b3l8f-t" failed. 1>&2 ; + $echo The command "diff -a 4m.O $srcdir/3b3l8f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1639,13 +1639,13 @@ $echo "Test 5a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5a.O $srcdir/ml24-t > /dev/null 2>&1 + diff -a 5a.O $srcdir/ml24-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5a"; fi ;; 1) $echo "Test 5a failed: files 5a.O and $srcdir/ml24-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5a may have failed." 1>&2; - $echo The command "cmp 5a.O $srcdir/ml24-t" failed. 1>&2 ; + $echo The command "diff -a 5a.O $srcdir/ml24-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1656,13 +1656,13 @@ $echo "Test 5b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5b.O $srcdir/ml17f-t > /dev/null 2>&1 + diff -a 5b.O $srcdir/ml17f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5b"; fi ;; 1) $echo "Test 5b failed: files 5b.O and $srcdir/ml17f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5b may have failed." 1>&2; - $echo The command "cmp 5b.O $srcdir/ml17f-t" failed. 1>&2 ; + $echo The command "diff -a 5b.O $srcdir/ml17f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1673,13 +1673,13 @@ $echo "Test 5c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5c.O $srcdir/3ml24-t > /dev/null 2>&1 + diff -a 5c.O $srcdir/3ml24-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5c"; fi ;; 1) $echo "Test 5c failed: files 5c.O and $srcdir/3ml24-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5c may have failed." 1>&2; - $echo The command "cmp 5c.O $srcdir/3ml24-t" failed. 1>&2 ; + $echo The command "diff -a 5c.O $srcdir/3ml24-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1690,13 +1690,13 @@ $echo "Test 5d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5d.O $srcdir/3ml17f-t > /dev/null 2>&1 + diff -a 5d.O $srcdir/3ml17f-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5d"; fi ;; 1) $echo "Test 5d failed: files 5d.O and $srcdir/3ml17f-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5d may have failed." 1>&2; - $echo The command "cmp 5d.O $srcdir/3ml17f-t" failed. 1>&2 ; + $echo The command "diff -a 5d.O $srcdir/3ml17f-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1707,13 +1707,13 @@ $echo "Test 5e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5e.O $srcdir/ml17f-0F > /dev/null 2>&1 + diff -a 5e.O $srcdir/ml17f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5e"; fi ;; 1) $echo "Test 5e failed: files 5e.O and $srcdir/ml17f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5e may have failed." 1>&2; - $echo The command "cmp 5e.O $srcdir/ml17f-0F" failed. 1>&2 ; + $echo The command "diff -a 5e.O $srcdir/ml17f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1724,13 +1724,13 @@ $echo "Test 5f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5f.O $srcdir/ml17f-0F > /dev/null 2>&1 + diff -a 5f.O $srcdir/ml17f-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5f"; fi ;; 1) $echo "Test 5f failed: files 5f.O and $srcdir/ml17f-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5f may have failed." 1>&2; - $echo The command "cmp 5f.O $srcdir/ml17f-0F" failed. 1>&2 ; + $echo The command "diff -a 5f.O $srcdir/ml17f-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1741,13 +1741,13 @@ $echo "Test 5g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5g.O $srcdir/ml17f-t-0F > /dev/null 2>&1 + diff -a 5g.O $srcdir/ml17f-t-0F > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5g"; fi ;; 1) $echo "Test 5g failed: files 5g.O and $srcdir/ml17f-t-0F differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5g may have failed." 1>&2; - $echo The command "cmp 5g.O $srcdir/ml17f-t-0F" failed. 1>&2 ; + $echo The command "diff -a 5g.O $srcdir/ml17f-t-0F" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1758,13 +1758,13 @@ $echo "Test 5ma failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5ma.O $srcdir/ml24-FF > /dev/null 2>&1 + diff -a 5ma.O $srcdir/ml24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5ma"; fi ;; 1) $echo "Test 5ma failed: files 5ma.O and $srcdir/ml24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5ma may have failed." 1>&2; - $echo The command "cmp 5ma.O $srcdir/ml24-FF" failed. 1>&2 ; + $echo The command "diff -a 5ma.O $srcdir/ml24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1775,13 +1775,13 @@ $echo "Test 5mb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5mb.O $srcdir/ml24-FF > /dev/null 2>&1 + diff -a 5mb.O $srcdir/ml24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5mb"; fi ;; 1) $echo "Test 5mb failed: files 5mb.O and $srcdir/ml24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5mb may have failed." 1>&2; - $echo The command "cmp 5mb.O $srcdir/ml24-FF" failed. 1>&2 ; + $echo The command "diff -a 5mb.O $srcdir/ml24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1792,13 +1792,13 @@ $echo "Test 5mc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5mc.O $srcdir/ml24-t-FF > /dev/null 2>&1 + diff -a 5mc.O $srcdir/ml24-t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5mc"; fi ;; 1) $echo "Test 5mc failed: files 5mc.O and $srcdir/ml24-t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5mc may have failed." 1>&2; - $echo The command "cmp 5mc.O $srcdir/ml24-t-FF" failed. 1>&2 ; + $echo The command "diff -a 5mc.O $srcdir/ml24-t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1809,13 +1809,13 @@ $echo "Test 5md failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5md.O $srcdir/ml20-FF-t > /dev/null 2>&1 + diff -a 5md.O $srcdir/ml20-FF-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5md"; fi ;; 1) $echo "Test 5md failed: files 5md.O and $srcdir/ml20-FF-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5md may have failed." 1>&2; - $echo The command "cmp 5md.O $srcdir/ml20-FF-t" failed. 1>&2 ; + $echo The command "diff -a 5md.O $srcdir/ml20-FF-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1826,13 +1826,13 @@ $echo "Test 5Pma failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5Pma.O $srcdir/3ml24-FF > /dev/null 2>&1 + diff -a 5Pma.O $srcdir/3ml24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5Pma"; fi ;; 1) $echo "Test 5Pma failed: files 5Pma.O and $srcdir/3ml24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5Pma may have failed." 1>&2; - $echo The command "cmp 5Pma.O $srcdir/3ml24-FF" failed. 1>&2 ; + $echo The command "diff -a 5Pma.O $srcdir/3ml24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1843,13 +1843,13 @@ $echo "Test 5Pmb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5Pmb.O $srcdir/3ml24-FF > /dev/null 2>&1 + diff -a 5Pmb.O $srcdir/3ml24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5Pmb"; fi ;; 1) $echo "Test 5Pmb failed: files 5Pmb.O and $srcdir/3ml24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5Pmb may have failed." 1>&2; - $echo The command "cmp 5Pmb.O $srcdir/3ml24-FF" failed. 1>&2 ; + $echo The command "diff -a 5Pmb.O $srcdir/3ml24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1860,13 +1860,13 @@ $echo "Test 5Pmc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5Pmc.O $srcdir/3ml24-t-FF > /dev/null 2>&1 + diff -a 5Pmc.O $srcdir/3ml24-t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5Pmc"; fi ;; 1) $echo "Test 5Pmc failed: files 5Pmc.O and $srcdir/3ml24-t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5Pmc may have failed." 1>&2; - $echo The command "cmp 5Pmc.O $srcdir/3ml24-t-FF" failed. 1>&2 ; + $echo The command "diff -a 5Pmc.O $srcdir/3ml24-t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1877,13 +1877,13 @@ $echo "Test 6a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6a.O $srcdir/t-t > /dev/null 2>&1 + diff -a 6a.O $srcdir/t-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6a"; fi ;; 1) $echo "Test 6a failed: files 6a.O and $srcdir/t-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6a may have failed." 1>&2; - $echo The command "cmp 6a.O $srcdir/t-t" failed. 1>&2 ; + $echo The command "diff -a 6a.O $srcdir/t-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1894,13 +1894,13 @@ $echo "Test 6b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6b.O $srcdir/t-t > /dev/null 2>&1 + diff -a 6b.O $srcdir/t-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6b"; fi ;; 1) $echo "Test 6b failed: files 6b.O and $srcdir/t-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6b may have failed." 1>&2; - $echo The command "cmp 6b.O $srcdir/t-t" failed. 1>&2 ; + $echo The command "diff -a 6b.O $srcdir/t-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1911,13 +1911,13 @@ $echo "Test 6c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6c.O $srcdir/t-bl > /dev/null 2>&1 + diff -a 6c.O $srcdir/t-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6c"; fi ;; 1) $echo "Test 6c failed: files 6c.O and $srcdir/t-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6c may have failed." 1>&2; - $echo The command "cmp 6c.O $srcdir/t-bl" failed. 1>&2 ; + $echo The command "diff -a 6c.O $srcdir/t-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1928,13 +1928,13 @@ $echo "Test 6d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6d.O $srcdir/t-0FF > /dev/null 2>&1 + diff -a 6d.O $srcdir/t-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6d"; fi ;; 1) $echo "Test 6d failed: files 6d.O and $srcdir/t-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6d may have failed." 1>&2; - $echo The command "cmp 6d.O $srcdir/t-0FF" failed. 1>&2 ; + $echo The command "diff -a 6d.O $srcdir/t-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1945,13 +1945,13 @@ $echo "Test 6e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6e.O $srcdir/t-FF > /dev/null 2>&1 + diff -a 6e.O $srcdir/t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6e"; fi ;; 1) $echo "Test 6e failed: files 6e.O and $srcdir/t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6e may have failed." 1>&2; - $echo The command "cmp 6e.O $srcdir/t-FF" failed. 1>&2 ; + $echo The command "diff -a 6e.O $srcdir/t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1962,13 +1962,13 @@ $echo "Test 6f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6f.O $srcdir/t-FF > /dev/null 2>&1 + diff -a 6f.O $srcdir/t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6f"; fi ;; 1) $echo "Test 6f failed: files 6f.O and $srcdir/t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6f may have failed." 1>&2; - $echo The command "cmp 6f.O $srcdir/t-FF" failed. 1>&2 ; + $echo The command "diff -a 6f.O $srcdir/t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1979,13 +1979,13 @@ $echo "Test 6g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6g.O $srcdir/t-FF > /dev/null 2>&1 + diff -a 6g.O $srcdir/t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6g"; fi ;; 1) $echo "Test 6g failed: files 6g.O and $srcdir/t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6g may have failed." 1>&2; - $echo The command "cmp 6g.O $srcdir/t-FF" failed. 1>&2 ; + $echo The command "diff -a 6g.O $srcdir/t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1996,13 +1996,13 @@ $echo "Test 6aa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6aa.O $srcdir/ta3-0FF > /dev/null 2>&1 + diff -a 6aa.O $srcdir/ta3-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6aa"; fi ;; 1) $echo "Test 6aa failed: files 6aa.O and $srcdir/ta3-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6aa may have failed." 1>&2; - $echo The command "cmp 6aa.O $srcdir/ta3-0FF" failed. 1>&2 ; + $echo The command "diff -a 6aa.O $srcdir/ta3-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2013,13 +2013,13 @@ $echo "Test 6ab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6ab.O $srcdir/ta3-FF > /dev/null 2>&1 + diff -a 6ab.O $srcdir/ta3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6ab"; fi ;; 1) $echo "Test 6ab failed: files 6ab.O and $srcdir/ta3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6ab may have failed." 1>&2; - $echo The command "cmp 6ab.O $srcdir/ta3-FF" failed. 1>&2 ; + $echo The command "diff -a 6ab.O $srcdir/ta3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2030,13 +2030,13 @@ $echo "Test 6ac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6ac.O $srcdir/ta3-FF > /dev/null 2>&1 + diff -a 6ac.O $srcdir/ta3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6ac"; fi ;; 1) $echo "Test 6ac failed: files 6ac.O and $srcdir/ta3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6ac may have failed." 1>&2; - $echo The command "cmp 6ac.O $srcdir/ta3-FF" failed. 1>&2 ; + $echo The command "diff -a 6ac.O $srcdir/ta3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2047,13 +2047,13 @@ $echo "Test 6ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6ba.O $srcdir/tb3-0FF > /dev/null 2>&1 + diff -a 6ba.O $srcdir/tb3-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6ba"; fi ;; 1) $echo "Test 6ba failed: files 6ba.O and $srcdir/tb3-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6ba may have failed." 1>&2; - $echo The command "cmp 6ba.O $srcdir/tb3-0FF" failed. 1>&2 ; + $echo The command "diff -a 6ba.O $srcdir/tb3-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2064,13 +2064,13 @@ $echo "Test 6bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6bb.O $srcdir/tb3-FF > /dev/null 2>&1 + diff -a 6bb.O $srcdir/tb3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6bb"; fi ;; 1) $echo "Test 6bb failed: files 6bb.O and $srcdir/tb3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6bb may have failed." 1>&2; - $echo The command "cmp 6bb.O $srcdir/tb3-FF" failed. 1>&2 ; + $echo The command "diff -a 6bb.O $srcdir/tb3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2081,13 +2081,13 @@ $echo "Test 6bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6bc.O $srcdir/tb3-FF > /dev/null 2>&1 + diff -a 6bc.O $srcdir/tb3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6bc"; fi ;; 1) $echo "Test 6bc failed: files 6bc.O and $srcdir/tb3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6bc may have failed." 1>&2; - $echo The command "cmp 6bc.O $srcdir/tb3-FF" failed. 1>&2 ; + $echo The command "diff -a 6bc.O $srcdir/tb3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2098,13 +2098,13 @@ $echo "Test 7a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7a.O $srcdir/tt-t > /dev/null 2>&1 + diff -a 7a.O $srcdir/tt-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7a"; fi ;; 1) $echo "Test 7a failed: files 7a.O and $srcdir/tt-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7a may have failed." 1>&2; - $echo The command "cmp 7a.O $srcdir/tt-t" failed. 1>&2 ; + $echo The command "diff -a 7a.O $srcdir/tt-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2115,13 +2115,13 @@ $echo "Test 7b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7b.O $srcdir/tt-t > /dev/null 2>&1 + diff -a 7b.O $srcdir/tt-t > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7b"; fi ;; 1) $echo "Test 7b failed: files 7b.O and $srcdir/tt-t differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7b may have failed." 1>&2; - $echo The command "cmp 7b.O $srcdir/tt-t" failed. 1>&2 ; + $echo The command "diff -a 7b.O $srcdir/tt-t" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2132,13 +2132,13 @@ $echo "Test 7c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7c.O $srcdir/tt-bl > /dev/null 2>&1 + diff -a 7c.O $srcdir/tt-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7c"; fi ;; 1) $echo "Test 7c failed: files 7c.O and $srcdir/tt-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7c may have failed." 1>&2; - $echo The command "cmp 7c.O $srcdir/tt-bl" failed. 1>&2 ; + $echo The command "diff -a 7c.O $srcdir/tt-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2149,13 +2149,13 @@ $echo "Test 7d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7d.O $srcdir/tt-0FF > /dev/null 2>&1 + diff -a 7d.O $srcdir/tt-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7d"; fi ;; 1) $echo "Test 7d failed: files 7d.O and $srcdir/tt-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7d may have failed." 1>&2; - $echo The command "cmp 7d.O $srcdir/tt-0FF" failed. 1>&2 ; + $echo The command "diff -a 7d.O $srcdir/tt-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2166,13 +2166,13 @@ $echo "Test 7e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7e.O $srcdir/tt-FF > /dev/null 2>&1 + diff -a 7e.O $srcdir/tt-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7e"; fi ;; 1) $echo "Test 7e failed: files 7e.O and $srcdir/tt-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7e may have failed." 1>&2; - $echo The command "cmp 7e.O $srcdir/tt-FF" failed. 1>&2 ; + $echo The command "diff -a 7e.O $srcdir/tt-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2183,13 +2183,13 @@ $echo "Test 7f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7f.O $srcdir/tt-FF > /dev/null 2>&1 + diff -a 7f.O $srcdir/tt-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7f"; fi ;; 1) $echo "Test 7f failed: files 7f.O and $srcdir/tt-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7f may have failed." 1>&2; - $echo The command "cmp 7f.O $srcdir/tt-FF" failed. 1>&2 ; + $echo The command "diff -a 7f.O $srcdir/tt-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2200,13 +2200,13 @@ $echo "Test 7g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7g.O $srcdir/tt-FF > /dev/null 2>&1 + diff -a 7g.O $srcdir/tt-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7g"; fi ;; 1) $echo "Test 7g failed: files 7g.O and $srcdir/tt-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7g may have failed." 1>&2; - $echo The command "cmp 7g.O $srcdir/tt-FF" failed. 1>&2 ; + $echo The command "diff -a 7g.O $srcdir/tt-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2217,13 +2217,13 @@ $echo "Test 7aa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7aa.O $srcdir/tta3-0FF > /dev/null 2>&1 + diff -a 7aa.O $srcdir/tta3-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7aa"; fi ;; 1) $echo "Test 7aa failed: files 7aa.O and $srcdir/tta3-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7aa may have failed." 1>&2; - $echo The command "cmp 7aa.O $srcdir/tta3-0FF" failed. 1>&2 ; + $echo The command "diff -a 7aa.O $srcdir/tta3-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2234,13 +2234,13 @@ $echo "Test 7ab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7ab.O $srcdir/tta3-FF > /dev/null 2>&1 + diff -a 7ab.O $srcdir/tta3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7ab"; fi ;; 1) $echo "Test 7ab failed: files 7ab.O and $srcdir/tta3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7ab may have failed." 1>&2; - $echo The command "cmp 7ab.O $srcdir/tta3-FF" failed. 1>&2 ; + $echo The command "diff -a 7ab.O $srcdir/tta3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2251,13 +2251,13 @@ $echo "Test 7ac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7ac.O $srcdir/tta3-FF > /dev/null 2>&1 + diff -a 7ac.O $srcdir/tta3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7ac"; fi ;; 1) $echo "Test 7ac failed: files 7ac.O and $srcdir/tta3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7ac may have failed." 1>&2; - $echo The command "cmp 7ac.O $srcdir/tta3-FF" failed. 1>&2 ; + $echo The command "diff -a 7ac.O $srcdir/tta3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2268,13 +2268,13 @@ $echo "Test 7ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7ba.O $srcdir/ttb3-0FF > /dev/null 2>&1 + diff -a 7ba.O $srcdir/ttb3-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7ba"; fi ;; 1) $echo "Test 7ba failed: files 7ba.O and $srcdir/ttb3-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7ba may have failed." 1>&2; - $echo The command "cmp 7ba.O $srcdir/ttb3-0FF" failed. 1>&2 ; + $echo The command "diff -a 7ba.O $srcdir/ttb3-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2285,13 +2285,13 @@ $echo "Test 7bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7bb.O $srcdir/ttb3-FF > /dev/null 2>&1 + diff -a 7bb.O $srcdir/ttb3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7bb"; fi ;; 1) $echo "Test 7bb failed: files 7bb.O and $srcdir/ttb3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7bb may have failed." 1>&2; - $echo The command "cmp 7bb.O $srcdir/ttb3-FF" failed. 1>&2 ; + $echo The command "diff -a 7bb.O $srcdir/ttb3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2302,13 +2302,13 @@ $echo "Test 7bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7bc.O $srcdir/ttb3-FF > /dev/null 2>&1 + diff -a 7bc.O $srcdir/ttb3-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7bc"; fi ;; 1) $echo "Test 7bc failed: files 7bc.O and $srcdir/ttb3-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7bc may have failed." 1>&2; - $echo The command "cmp 7bc.O $srcdir/ttb3-FF" failed. 1>&2 ; + $echo The command "diff -a 7bc.O $srcdir/ttb3-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2319,13 +2319,13 @@ $echo "Test 9a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9a.O $srcdir/nl17f-bl > /dev/null 2>&1 + diff -a 9a.O $srcdir/nl17f-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9a"; fi ;; 1) $echo "Test 9a failed: files 9a.O and $srcdir/nl17f-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9a may have failed." 1>&2; - $echo The command "cmp 9a.O $srcdir/nl17f-bl" failed. 1>&2 ; + $echo The command "diff -a 9a.O $srcdir/nl17f-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2336,13 +2336,13 @@ $echo "Test 9b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9b.O $srcdir/nN15l17f-bl > /dev/null 2>&1 + diff -a 9b.O $srcdir/nN15l17f-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9b"; fi ;; 1) $echo "Test 9b failed: files 9b.O and $srcdir/nN15l17f-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9b may have failed." 1>&2; - $echo The command "cmp 9b.O $srcdir/nN15l17f-bl" failed. 1>&2 ; + $echo The command "diff -a 9b.O $srcdir/nN15l17f-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2353,13 +2353,13 @@ $echo "Test 9Pa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pa.O $srcdir/n+2l17f-bl > /dev/null 2>&1 + diff -a 9Pa.O $srcdir/n+2l17f-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pa"; fi ;; 1) $echo "Test 9Pa failed: files 9Pa.O and $srcdir/n+2l17f-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pa may have failed." 1>&2; - $echo The command "cmp 9Pa.O $srcdir/n+2l17f-bl" failed. 1>&2 ; + $echo The command "diff -a 9Pa.O $srcdir/n+2l17f-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2370,13 +2370,13 @@ $echo "Test 9Pb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pb.O $srcdir/n+3l17f-bl > /dev/null 2>&1 + diff -a 9Pb.O $srcdir/n+3l17f-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pb"; fi ;; 1) $echo "Test 9Pb failed: files 9Pb.O and $srcdir/n+3l17f-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pb may have failed." 1>&2; - $echo The command "cmp 9Pb.O $srcdir/n+3l17f-bl" failed. 1>&2 ; + $echo The command "diff -a 9Pb.O $srcdir/n+3l17f-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2387,13 +2387,13 @@ $echo "Test 9Pc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pc.O $srcdir/nN1+3l17f-bl > /dev/null 2>&1 + diff -a 9Pc.O $srcdir/nN1+3l17f-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pc"; fi ;; 1) $echo "Test 9Pc failed: files 9Pc.O and $srcdir/nN1+3l17f-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pc may have failed." 1>&2; - $echo The command "cmp 9Pc.O $srcdir/nN1+3l17f-bl" failed. 1>&2 ; + $echo The command "diff -a 9Pc.O $srcdir/nN1+3l17f-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2404,13 +2404,13 @@ $echo "Test 9Pe failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pe.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 + diff -a 9Pe.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pe"; fi ;; 1) $echo "Test 9Pe failed: files 9Pe.O and $srcdir/n+2l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pe may have failed." 1>&2; - $echo The command "cmp 9Pe.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pe.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2421,13 +2421,13 @@ $echo "Test 9Pf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pf.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 + diff -a 9Pf.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pf"; fi ;; 1) $echo "Test 9Pf failed: files 9Pf.O and $srcdir/n+2l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pf may have failed." 1>&2; - $echo The command "cmp 9Pf.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pf.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2438,13 +2438,13 @@ $echo "Test 9Pg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pg.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 + diff -a 9Pg.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pg"; fi ;; 1) $echo "Test 9Pg failed: files 9Pg.O and $srcdir/n+2l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pg may have failed." 1>&2; - $echo The command "cmp 9Pg.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pg.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2455,13 +2455,13 @@ $echo "Test 9Ph failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Ph.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 + diff -a 9Ph.O $srcdir/n+2l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Ph"; fi ;; 1) $echo "Test 9Ph failed: files 9Ph.O and $srcdir/n+2l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Ph may have failed." 1>&2; - $echo The command "cmp 9Ph.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Ph.O $srcdir/n+2l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2472,13 +2472,13 @@ $echo "Test 9Pi failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pi.O $srcdir/n+2-5l17f-0FF > /dev/null 2>&1 + diff -a 9Pi.O $srcdir/n+2-5l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pi"; fi ;; 1) $echo "Test 9Pi failed: files 9Pi.O and $srcdir/n+2-5l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pi may have failed." 1>&2; - $echo The command "cmp 9Pi.O $srcdir/n+2-5l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pi.O $srcdir/n+2-5l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2489,13 +2489,13 @@ $echo "Test 9Pj failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pj.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 + diff -a 9Pj.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pj"; fi ;; 1) $echo "Test 9Pj failed: files 9Pj.O and $srcdir/n+3l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pj may have failed." 1>&2; - $echo The command "cmp 9Pj.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pj.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2506,13 +2506,13 @@ $echo "Test 9Pk failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pk.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 + diff -a 9Pk.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pk"; fi ;; 1) $echo "Test 9Pk failed: files 9Pk.O and $srcdir/n+3l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pk may have failed." 1>&2; - $echo The command "cmp 9Pk.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pk.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2523,13 +2523,13 @@ $echo "Test 9Pl failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pl.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 + diff -a 9Pl.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pl"; fi ;; 1) $echo "Test 9Pl failed: files 9Pl.O and $srcdir/n+3l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pl may have failed." 1>&2; - $echo The command "cmp 9Pl.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pl.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2540,13 +2540,13 @@ $echo "Test 9Pm failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pm.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 + diff -a 9Pm.O $srcdir/n+3l17f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pm"; fi ;; 1) $echo "Test 9Pm failed: files 9Pm.O and $srcdir/n+3l17f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pm may have failed." 1>&2; - $echo The command "cmp 9Pm.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pm.O $srcdir/n+3l17f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2557,13 +2557,13 @@ $echo "Test 9Pn failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pn.O $srcdir/n+7l24-FF > /dev/null 2>&1 + diff -a 9Pn.O $srcdir/n+7l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pn"; fi ;; 1) $echo "Test 9Pn failed: files 9Pn.O and $srcdir/n+7l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pn may have failed." 1>&2; - $echo The command "cmp 9Pn.O $srcdir/n+7l24-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pn.O $srcdir/n+7l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2574,13 +2574,13 @@ $echo "Test 9Po failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Po.O $srcdir/n+7l24-FF > /dev/null 2>&1 + diff -a 9Po.O $srcdir/n+7l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Po"; fi ;; 1) $echo "Test 9Po failed: files 9Po.O and $srcdir/n+7l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Po may have failed." 1>&2; - $echo The command "cmp 9Po.O $srcdir/n+7l24-FF" failed. 1>&2 ; + $echo The command "diff -a 9Po.O $srcdir/n+7l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2591,13 +2591,13 @@ $echo "Test 9Pp failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pp.O $srcdir/n+7l24-FF > /dev/null 2>&1 + diff -a 9Pp.O $srcdir/n+7l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pp"; fi ;; 1) $echo "Test 9Pp failed: files 9Pp.O and $srcdir/n+7l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pp may have failed." 1>&2; - $echo The command "cmp 9Pp.O $srcdir/n+7l24-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pp.O $srcdir/n+7l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2608,13 +2608,13 @@ $echo "Test 9Pq failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pq.O $srcdir/n+3-7l24-FF > /dev/null 2>&1 + diff -a 9Pq.O $srcdir/n+3-7l24-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pq"; fi ;; 1) $echo "Test 9Pq failed: files 9Pq.O and $srcdir/n+3-7l24-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pq may have failed." 1>&2; - $echo The command "cmp 9Pq.O $srcdir/n+3-7l24-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pq.O $srcdir/n+3-7l24-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2625,13 +2625,13 @@ $echo "Test 9Pr failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pr.O $srcdir/n+8l20-FF > /dev/null 2>&1 + diff -a 9Pr.O $srcdir/n+8l20-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pr"; fi ;; 1) $echo "Test 9Pr failed: files 9Pr.O and $srcdir/n+8l20-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pr may have failed." 1>&2; - $echo The command "cmp 9Pr.O $srcdir/n+8l20-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pr.O $srcdir/n+8l20-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2642,13 +2642,13 @@ $echo "Test 9Ps failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Ps.O $srcdir/n+8l20-FF > /dev/null 2>&1 + diff -a 9Ps.O $srcdir/n+8l20-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Ps"; fi ;; 1) $echo "Test 9Ps failed: files 9Ps.O and $srcdir/n+8l20-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Ps may have failed." 1>&2; - $echo The command "cmp 9Ps.O $srcdir/n+8l20-FF" failed. 1>&2 ; + $echo The command "diff -a 9Ps.O $srcdir/n+8l20-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2659,13 +2659,13 @@ $echo "Test 9Pt failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pt.O $srcdir/n+8l20-FF > /dev/null 2>&1 + diff -a 9Pt.O $srcdir/n+8l20-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pt"; fi ;; 1) $echo "Test 9Pt failed: files 9Pt.O and $srcdir/n+8l20-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pt may have failed." 1>&2; - $echo The command "cmp 9Pt.O $srcdir/n+8l20-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pt.O $srcdir/n+8l20-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2676,13 +2676,13 @@ $echo "Test 9Paa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Paa.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 + diff -a 9Paa.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Paa"; fi ;; 1) $echo "Test 9Paa failed: files 9Paa.O and $srcdir/n+5a3l6f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Paa may have failed." 1>&2; - $echo The command "cmp 9Paa.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Paa.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2693,13 +2693,13 @@ $echo "Test 9Pab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pab.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 + diff -a 9Pab.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pab"; fi ;; 1) $echo "Test 9Pab failed: files 9Pab.O and $srcdir/n+5a3l6f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pab may have failed." 1>&2; - $echo The command "cmp 9Pab.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pab.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2710,13 +2710,13 @@ $echo "Test 9Pac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pac.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 + diff -a 9Pac.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pac"; fi ;; 1) $echo "Test 9Pac failed: files 9Pac.O and $srcdir/n+5a3l6f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pac may have failed." 1>&2; - $echo The command "cmp 9Pac.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pac.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2727,13 +2727,13 @@ $echo "Test 9Pad failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pad.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 + diff -a 9Pad.O $srcdir/n+5a3l6f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pad"; fi ;; 1) $echo "Test 9Pad failed: files 9Pad.O and $srcdir/n+5a3l6f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pad may have failed." 1>&2; - $echo The command "cmp 9Pad.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pad.O $srcdir/n+5a3l6f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2744,13 +2744,13 @@ $echo "Test 9Pae failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pae.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Pae.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pae"; fi ;; 1) $echo "Test 9Pae failed: files 9Pae.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pae may have failed." 1>&2; - $echo The command "cmp 9Pae.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pae.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2761,13 +2761,13 @@ $echo "Test 9Paf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Paf.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Paf.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Paf"; fi ;; 1) $echo "Test 9Paf failed: files 9Paf.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Paf may have failed." 1>&2; - $echo The command "cmp 9Paf.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Paf.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2778,13 +2778,13 @@ $echo "Test 9Pag failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pag.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Pag.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pag"; fi ;; 1) $echo "Test 9Pag failed: files 9Pag.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pag may have failed." 1>&2; - $echo The command "cmp 9Pag.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pag.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2795,13 +2795,13 @@ $echo "Test 9Pah failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pah.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Pah.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pah"; fi ;; 1) $echo "Test 9Pah failed: files 9Pah.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pah may have failed." 1>&2; - $echo The command "cmp 9Pah.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pah.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2812,13 +2812,13 @@ $echo "Test 9Pai failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pai.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Pai.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pai"; fi ;; 1) $echo "Test 9Pai failed: files 9Pai.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pai may have failed." 1>&2; - $echo The command "cmp 9Pai.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pai.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2829,13 +2829,13 @@ $echo "Test 9Paj failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Paj.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 + diff -a 9Paj.O $srcdir/n+6a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Paj"; fi ;; 1) $echo "Test 9Paj failed: files 9Paj.O and $srcdir/n+6a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Paj may have failed." 1>&2; - $echo The command "cmp 9Paj.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Paj.O $srcdir/n+6a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2846,13 +2846,13 @@ $echo "Test 9Pak failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pak.O $srcdir/n+4-8a2l17-FF > /dev/null 2>&1 + diff -a 9Pak.O $srcdir/n+4-8a2l17-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pak"; fi ;; 1) $echo "Test 9Pak failed: files 9Pak.O and $srcdir/n+4-8a2l17-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pak may have failed." 1>&2; - $echo The command "cmp 9Pak.O $srcdir/n+4-8a2l17-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pak.O $srcdir/n+4-8a2l17-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2863,13 +2863,13 @@ $echo "Test 9Pba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pba.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 + diff -a 9Pba.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pba"; fi ;; 1) $echo "Test 9Pba failed: files 9Pba.O and $srcdir/n+4b2l10f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pba may have failed." 1>&2; - $echo The command "cmp 9Pba.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pba.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2880,13 +2880,13 @@ $echo "Test 9Pbb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbb.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 + diff -a 9Pbb.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbb"; fi ;; 1) $echo "Test 9Pbb failed: files 9Pbb.O and $srcdir/n+4b2l10f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbb may have failed." 1>&2; - $echo The command "cmp 9Pbb.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbb.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2897,13 +2897,13 @@ $echo "Test 9Pbc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbc.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 + diff -a 9Pbc.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbc"; fi ;; 1) $echo "Test 9Pbc failed: files 9Pbc.O and $srcdir/n+4b2l10f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbc may have failed." 1>&2; - $echo The command "cmp 9Pbc.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbc.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2914,13 +2914,13 @@ $echo "Test 9Pbd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbd.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 + diff -a 9Pbd.O $srcdir/n+4b2l10f-0FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbd"; fi ;; 1) $echo "Test 9Pbd failed: files 9Pbd.O and $srcdir/n+4b2l10f-0FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbd may have failed." 1>&2; - $echo The command "cmp 9Pbd.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbd.O $srcdir/n+4b2l10f-0FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2931,13 +2931,13 @@ $echo "Test 9Pbe failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbe.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbe.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbe"; fi ;; 1) $echo "Test 9Pbe failed: files 9Pbe.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbe may have failed." 1>&2; - $echo The command "cmp 9Pbe.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbe.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2948,13 +2948,13 @@ $echo "Test 9Pbf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbf.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbf.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbf"; fi ;; 1) $echo "Test 9Pbf failed: files 9Pbf.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbf may have failed." 1>&2; - $echo The command "cmp 9Pbf.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbf.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2965,13 +2965,13 @@ $echo "Test 9Pbg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbg.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbg.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbg"; fi ;; 1) $echo "Test 9Pbg failed: files 9Pbg.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbg may have failed." 1>&2; - $echo The command "cmp 9Pbg.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbg.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2982,13 +2982,13 @@ $echo "Test 9Pbh failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbh.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbh.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbh"; fi ;; 1) $echo "Test 9Pbh failed: files 9Pbh.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbh may have failed." 1>&2; - $echo The command "cmp 9Pbh.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbh.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -2999,13 +2999,13 @@ $echo "Test 9Pbi failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbi.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbi.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbi"; fi ;; 1) $echo "Test 9Pbi failed: files 9Pbi.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbi may have failed." 1>&2; - $echo The command "cmp 9Pbi.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbi.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3016,13 +3016,13 @@ $echo "Test 9Pbj failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbj.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 + diff -a 9Pbj.O $srcdir/n+6b3l6f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbj"; fi ;; 1) $echo "Test 9Pbj failed: files 9Pbj.O and $srcdir/n+6b3l6f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbj may have failed." 1>&2; - $echo The command "cmp 9Pbj.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbj.O $srcdir/n+6b3l6f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3033,13 +3033,13 @@ $echo "Test 9Pbk failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pbk.O $srcdir/n+5-8b3l10f-FF > /dev/null 2>&1 + diff -a 9Pbk.O $srcdir/n+5-8b3l10f-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pbk"; fi ;; 1) $echo "Test 9Pbk failed: files 9Pbk.O and $srcdir/n+5-8b3l10f-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pbk may have failed." 1>&2; - $echo The command "cmp 9Pbk.O $srcdir/n+5-8b3l10f-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pbk.O $srcdir/n+5-8b3l10f-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3050,13 +3050,13 @@ $echo "Test 9Pma failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pma.O $srcdir/n+3ml13f-bl-FF > /dev/null 2>&1 + diff -a 9Pma.O $srcdir/n+3ml13f-bl-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pma"; fi ;; 1) $echo "Test 9Pma failed: files 9Pma.O and $srcdir/n+3ml13f-bl-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pma may have failed." 1>&2; - $echo The command "cmp 9Pma.O $srcdir/n+3ml13f-bl-FF" failed. 1>&2 ; + $echo The command "diff -a 9Pma.O $srcdir/n+3ml13f-bl-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3067,13 +3067,13 @@ $echo "Test 9Pmb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pmb.O $srcdir/n+3ml17f-bl-tn > /dev/null 2>&1 + diff -a 9Pmb.O $srcdir/n+3ml17f-bl-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pmb"; fi ;; 1) $echo "Test 9Pmb failed: files 9Pmb.O and $srcdir/n+3ml17f-bl-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pmb may have failed." 1>&2; - $echo The command "cmp 9Pmb.O $srcdir/n+3ml17f-bl-tn" failed. 1>&2 ; + $echo The command "diff -a 9Pmb.O $srcdir/n+3ml17f-bl-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3084,13 +3084,13 @@ $echo "Test 9Pmc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9Pmc.O $srcdir/n+3ml17f-tn-bl > /dev/null 2>&1 + diff -a 9Pmc.O $srcdir/n+3ml17f-tn-bl > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9Pmc"; fi ;; 1) $echo "Test 9Pmc failed: files 9Pmc.O and $srcdir/n+3ml17f-tn-bl differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9Pmc may have failed." 1>&2; - $echo The command "cmp 9Pmc.O $srcdir/n+3ml17f-tn-bl" failed. 1>&2 ; + $echo The command "diff -a 9Pmc.O $srcdir/n+3ml17f-tn-bl" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3101,13 +3101,13 @@ $echo "Test 10wa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wa.O $srcdir/W72Jl17f-ll > /dev/null 2>&1 + diff -a 10wa.O $srcdir/W72Jl17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wa"; fi ;; 1) $echo "Test 10wa failed: files 10wa.O and $srcdir/W72Jl17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wa may have failed." 1>&2; - $echo The command "cmp 10wa.O $srcdir/W72Jl17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wa.O $srcdir/W72Jl17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3118,13 +3118,13 @@ $echo "Test 10wb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wb.O $srcdir/W72Jl17f-ll > /dev/null 2>&1 + diff -a 10wb.O $srcdir/W72Jl17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wb"; fi ;; 1) $echo "Test 10wb failed: files 10wb.O and $srcdir/W72Jl17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wb may have failed." 1>&2; - $echo The command "cmp 10wb.O $srcdir/W72Jl17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wb.O $srcdir/W72Jl17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3135,13 +3135,13 @@ $echo "Test 10wc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wc.O $srcdir/W72l17f-ll > /dev/null 2>&1 + diff -a 10wc.O $srcdir/W72l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wc"; fi ;; 1) $echo "Test 10wc failed: files 10wc.O and $srcdir/W72l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wc may have failed." 1>&2; - $echo The command "cmp 10wc.O $srcdir/W72l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wc.O $srcdir/W72l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3152,13 +3152,13 @@ $echo "Test 10wd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wd.O $srcdir/w72l17f-ll > /dev/null 2>&1 + diff -a 10wd.O $srcdir/w72l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wd"; fi ;; 1) $echo "Test 10wd failed: files 10wd.O and $srcdir/w72l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wd may have failed." 1>&2; - $echo The command "cmp 10wd.O $srcdir/w72l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wd.O $srcdir/w72l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3169,13 +3169,13 @@ $echo "Test 10we failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10we.O $srcdir/W28l17f-ll > /dev/null 2>&1 + diff -a 10we.O $srcdir/W28l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10we"; fi ;; 1) $echo "Test 10we failed: files 10we.O and $srcdir/W28l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10we may have failed." 1>&2; - $echo The command "cmp 10we.O $srcdir/W28l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10we.O $srcdir/W28l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3186,13 +3186,13 @@ $echo "Test 10wf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wf.O $srcdir/W27l17f-ll > /dev/null 2>&1 + diff -a 10wf.O $srcdir/W27l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wf"; fi ;; 1) $echo "Test 10wf failed: files 10wf.O and $srcdir/W27l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wf may have failed." 1>&2; - $echo The command "cmp 10wf.O $srcdir/W27l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wf.O $srcdir/W27l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3203,13 +3203,13 @@ $echo "Test 10wg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wg.O $srcdir/W26l17f-ll > /dev/null 2>&1 + diff -a 10wg.O $srcdir/W26l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wg"; fi ;; 1) $echo "Test 10wg failed: files 10wg.O and $srcdir/W26l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wg may have failed." 1>&2; - $echo The command "cmp 10wg.O $srcdir/W26l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wg.O $srcdir/W26l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3220,13 +3220,13 @@ $echo "Test 10wh failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10wh.O $srcdir/W20l17f-ll > /dev/null 2>&1 + diff -a 10wh.O $srcdir/W20l17f-ll > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10wh"; fi ;; 1) $echo "Test 10wh failed: files 10wh.O and $srcdir/W20l17f-ll differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10wh may have failed." 1>&2; - $echo The command "cmp 10wh.O $srcdir/W20l17f-ll" failed. 1>&2 ; + $echo The command "diff -a 10wh.O $srcdir/W20l17f-ll" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3237,13 +3237,13 @@ $echo "Test 10ma failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10ma.O $srcdir/ml17f-lm-lo > /dev/null 2>&1 + diff -a 10ma.O $srcdir/ml17f-lm-lo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10ma"; fi ;; 1) $echo "Test 10ma failed: files 10ma.O and $srcdir/ml17f-lm-lo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10ma may have failed." 1>&2; - $echo The command "cmp 10ma.O $srcdir/ml17f-lm-lo" failed. 1>&2 ; + $echo The command "diff -a 10ma.O $srcdir/ml17f-lm-lo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3254,13 +3254,13 @@ $echo "Test 10mb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10mb.O $srcdir/W35ml17f-lm-lo > /dev/null 2>&1 + diff -a 10mb.O $srcdir/W35ml17f-lm-lo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10mb"; fi ;; 1) $echo "Test 10mb failed: files 10mb.O and $srcdir/W35ml17f-lm-lo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10mb may have failed." 1>&2; - $echo The command "cmp 10mb.O $srcdir/W35ml17f-lm-lo" failed. 1>&2 ; + $echo The command "diff -a 10mb.O $srcdir/W35ml17f-lm-lo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3271,13 +3271,13 @@ $echo "Test 10mc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10mc.O $srcdir/W35ml17f-lm-lo > /dev/null 2>&1 + diff -a 10mc.O $srcdir/W35ml17f-lm-lo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10mc"; fi ;; 1) $echo "Test 10mc failed: files 10mc.O and $srcdir/W35ml17f-lm-lo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10mc may have failed." 1>&2; - $echo The command "cmp 10mc.O $srcdir/W35ml17f-lm-lo" failed. 1>&2 ; + $echo The command "diff -a 10mc.O $srcdir/W35ml17f-lm-lo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3288,13 +3288,13 @@ $echo "Test 10md failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10md.O $srcdir/Jml17f-lm-lo > /dev/null 2>&1 + diff -a 10md.O $srcdir/Jml17f-lm-lo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10md"; fi ;; 1) $echo "Test 10md failed: files 10md.O and $srcdir/Jml17f-lm-lo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10md may have failed." 1>&2; - $echo The command "cmp 10md.O $srcdir/Jml17f-lm-lo" failed. 1>&2 ; + $echo The command "diff -a 10md.O $srcdir/Jml17f-lm-lo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3305,13 +3305,13 @@ $echo "Test 10me failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10me.O $srcdir/W35Jml17f-lmlo > /dev/null 2>&1 + diff -a 10me.O $srcdir/W35Jml17f-lmlo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10me"; fi ;; 1) $echo "Test 10me failed: files 10me.O and $srcdir/W35Jml17f-lmlo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10me may have failed." 1>&2; - $echo The command "cmp 10me.O $srcdir/W35Jml17f-lmlo" failed. 1>&2 ; + $echo The command "diff -a 10me.O $srcdir/W35Jml17f-lmlo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3322,13 +3322,13 @@ $echo "Test 10mf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10mf.O $srcdir/W35Jml17f-lmlo > /dev/null 2>&1 + diff -a 10mf.O $srcdir/W35Jml17f-lmlo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10mf"; fi ;; 1) $echo "Test 10mf failed: files 10mf.O and $srcdir/W35Jml17f-lmlo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10mf may have failed." 1>&2; - $echo The command "cmp 10mf.O $srcdir/W35Jml17f-lmlo" failed. 1>&2 ; + $echo The command "diff -a 10mf.O $srcdir/W35Jml17f-lmlo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3339,13 +3339,13 @@ $echo "Test 10mg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10mg.O $srcdir/nJml17f-lmlmlo > /dev/null 2>&1 + diff -a 10mg.O $srcdir/nJml17f-lmlmlo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10mg"; fi ;; 1) $echo "Test 10mg failed: files 10mg.O and $srcdir/nJml17f-lmlmlo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10mg may have failed." 1>&2; - $echo The command "cmp 10mg.O $srcdir/nJml17f-lmlmlo" failed. 1>&2 ; + $echo The command "diff -a 10mg.O $srcdir/nJml17f-lmlmlo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3356,13 +3356,13 @@ $echo "Test 10mh failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10mh.O $srcdir/nJml17f-lmlolm > /dev/null 2>&1 + diff -a 10mh.O $srcdir/nJml17f-lmlolm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10mh"; fi ;; 1) $echo "Test 10mh failed: files 10mh.O and $srcdir/nJml17f-lmlolm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10mh may have failed." 1>&2; - $echo The command "cmp 10mh.O $srcdir/nJml17f-lmlolm" failed. 1>&2 ; + $echo The command "diff -a 10mh.O $srcdir/nJml17f-lmlolm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3373,13 +3373,13 @@ $echo "Test 10aa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10aa.O $srcdir/a3l17f-lm > /dev/null 2>&1 + diff -a 10aa.O $srcdir/a3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10aa"; fi ;; 1) $echo "Test 10aa failed: files 10aa.O and $srcdir/a3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10aa may have failed." 1>&2; - $echo The command "cmp 10aa.O $srcdir/a3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10aa.O $srcdir/a3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3390,13 +3390,13 @@ $echo "Test 10ab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10ab.O $srcdir/W35a3l17f-lm > /dev/null 2>&1 + diff -a 10ab.O $srcdir/W35a3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10ab"; fi ;; 1) $echo "Test 10ab failed: files 10ab.O and $srcdir/W35a3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10ab may have failed." 1>&2; - $echo The command "cmp 10ab.O $srcdir/W35a3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10ab.O $srcdir/W35a3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3407,13 +3407,13 @@ $echo "Test 10ac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10ac.O $srcdir/Ja3l17f-lm > /dev/null 2>&1 + diff -a 10ac.O $srcdir/Ja3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10ac"; fi ;; 1) $echo "Test 10ac failed: files 10ac.O and $srcdir/Ja3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10ac may have failed." 1>&2; - $echo The command "cmp 10ac.O $srcdir/Ja3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10ac.O $srcdir/Ja3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3424,13 +3424,13 @@ $echo "Test 10ad failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10ad.O $srcdir/W35Ja3l17f-lm > /dev/null 2>&1 + diff -a 10ad.O $srcdir/W35Ja3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10ad"; fi ;; 1) $echo "Test 10ad failed: files 10ad.O and $srcdir/W35Ja3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10ad may have failed." 1>&2; - $echo The command "cmp 10ad.O $srcdir/W35Ja3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10ad.O $srcdir/W35Ja3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3441,13 +3441,13 @@ $echo "Test 10ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10ba.O $srcdir/b3l17f-lm > /dev/null 2>&1 + diff -a 10ba.O $srcdir/b3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10ba"; fi ;; 1) $echo "Test 10ba failed: files 10ba.O and $srcdir/b3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10ba may have failed." 1>&2; - $echo The command "cmp 10ba.O $srcdir/b3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10ba.O $srcdir/b3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3458,13 +3458,13 @@ $echo "Test 10bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10bb.O $srcdir/W35b3l17f-lm > /dev/null 2>&1 + diff -a 10bb.O $srcdir/W35b3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10bb"; fi ;; 1) $echo "Test 10bb failed: files 10bb.O and $srcdir/W35b3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10bb may have failed." 1>&2; - $echo The command "cmp 10bb.O $srcdir/W35b3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10bb.O $srcdir/W35b3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3475,13 +3475,13 @@ $echo "Test 10bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10bc.O $srcdir/Jb3l17f-lm > /dev/null 2>&1 + diff -a 10bc.O $srcdir/Jb3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10bc"; fi ;; 1) $echo "Test 10bc failed: files 10bc.O and $srcdir/Jb3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10bc may have failed." 1>&2; - $echo The command "cmp 10bc.O $srcdir/Jb3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10bc.O $srcdir/Jb3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3492,13 +3492,13 @@ $echo "Test 10bd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10bd.O $srcdir/W35Jb3l17f-lm > /dev/null 2>&1 + diff -a 10bd.O $srcdir/W35Jb3l17f-lm > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10bd"; fi ;; 1) $echo "Test 10bd failed: files 10bd.O and $srcdir/W35Jb3l17f-lm differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10bd may have failed." 1>&2; - $echo The command "cmp 10bd.O $srcdir/W35Jb3l17f-lm" failed. 1>&2 ; + $echo The command "diff -a 10bd.O $srcdir/W35Jb3l17f-lm" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3509,13 +3509,13 @@ $echo "Test 11sa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11sa.O $srcdir/nSml13-bl-FF > /dev/null 2>&1 + diff -a 11sa.O $srcdir/nSml13-bl-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11sa"; fi ;; 1) $echo "Test 11sa failed: files 11sa.O and $srcdir/nSml13-bl-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11sa may have failed." 1>&2; - $echo The command "cmp 11sa.O $srcdir/nSml13-bl-FF" failed. 1>&2 ; + $echo The command "diff -a 11sa.O $srcdir/nSml13-bl-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3526,13 +3526,13 @@ $echo "Test 11sb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11sb.O $srcdir/nSml17-bl-FF > /dev/null 2>&1 + diff -a 11sb.O $srcdir/nSml17-bl-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11sb"; fi ;; 1) $echo "Test 11sb failed: files 11sb.O and $srcdir/nSml17-bl-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11sb may have failed." 1>&2; - $echo The command "cmp 11sb.O $srcdir/nSml17-bl-FF" failed. 1>&2 ; + $echo The command "diff -a 11sb.O $srcdir/nSml17-bl-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3543,13 +3543,13 @@ $echo "Test 11se failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11se.O $srcdir/nSml13-t-t-FF > /dev/null 2>&1 + diff -a 11se.O $srcdir/nSml13-t-t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11se"; fi ;; 1) $echo "Test 11se failed: files 11se.O and $srcdir/nSml13-t-t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11se may have failed." 1>&2; - $echo The command "cmp 11se.O $srcdir/nSml13-t-t-FF" failed. 1>&2 ; + $echo The command "diff -a 11se.O $srcdir/nSml13-t-t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3560,13 +3560,13 @@ $echo "Test 11sf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11sf.O $srcdir/nSml17-t-t-FF > /dev/null 2>&1 + diff -a 11sf.O $srcdir/nSml17-t-t-FF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11sf"; fi ;; 1) $echo "Test 11sf failed: files 11sf.O and $srcdir/nSml17-t-t-FF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11sf may have failed." 1>&2; - $echo The command "cmp 11sf.O $srcdir/nSml17-t-t-FF" failed. 1>&2 ; + $echo The command "diff -a 11sf.O $srcdir/nSml17-t-t-FF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3577,13 +3577,13 @@ $echo "Test 11sg failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11sg.O $srcdir/nSml13-t-tFFFF > /dev/null 2>&1 + diff -a 11sg.O $srcdir/nSml13-t-tFFFF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11sg"; fi ;; 1) $echo "Test 11sg failed: files 11sg.O and $srcdir/nSml13-t-tFFFF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11sg may have failed." 1>&2; - $echo The command "cmp 11sg.O $srcdir/nSml13-t-tFFFF" failed. 1>&2 ; + $echo The command "diff -a 11sg.O $srcdir/nSml13-t-tFFFF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3594,13 +3594,13 @@ $echo "Test 11sh failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11sh.O $srcdir/nSml17-t-tFFFF > /dev/null 2>&1 + diff -a 11sh.O $srcdir/nSml17-t-tFFFF > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11sh"; fi ;; 1) $echo "Test 11sh failed: files 11sh.O and $srcdir/nSml17-t-tFFFF differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11sh may have failed." 1>&2; - $echo The command "cmp 11sh.O $srcdir/nSml17-t-tFFFF" failed. 1>&2 ; + $echo The command "diff -a 11sh.O $srcdir/nSml17-t-tFFFF" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3611,13 +3611,13 @@ $echo "Test 12aa failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12aa.O $srcdir/o3a3l17f-tn > /dev/null 2>&1 + diff -a 12aa.O $srcdir/o3a3l17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12aa"; fi ;; 1) $echo "Test 12aa failed: files 12aa.O and $srcdir/o3a3l17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12aa may have failed." 1>&2; - $echo The command "cmp 12aa.O $srcdir/o3a3l17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12aa.O $srcdir/o3a3l17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3628,13 +3628,13 @@ $echo "Test 12ab failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12ab.O $srcdir/o3a3Sl17f-tn > /dev/null 2>&1 + diff -a 12ab.O $srcdir/o3a3Sl17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12ab"; fi ;; 1) $echo "Test 12ab failed: files 12ab.O and $srcdir/o3a3Sl17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12ab may have failed." 1>&2; - $echo The command "cmp 12ab.O $srcdir/o3a3Sl17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12ab.O $srcdir/o3a3Sl17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3645,13 +3645,13 @@ $echo "Test 12ac failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12ac.O $srcdir/o3a3Snl17f-tn > /dev/null 2>&1 + diff -a 12ac.O $srcdir/o3a3Snl17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12ac"; fi ;; 1) $echo "Test 12ac failed: files 12ac.O and $srcdir/o3a3Snl17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12ac may have failed." 1>&2; - $echo The command "cmp 12ac.O $srcdir/o3a3Snl17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12ac.O $srcdir/o3a3Snl17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3662,13 +3662,13 @@ $echo "Test 12ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12ba.O $srcdir/o3b3l17f-tn > /dev/null 2>&1 + diff -a 12ba.O $srcdir/o3b3l17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12ba"; fi ;; 1) $echo "Test 12ba failed: files 12ba.O and $srcdir/o3b3l17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12ba may have failed." 1>&2; - $echo The command "cmp 12ba.O $srcdir/o3b3l17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12ba.O $srcdir/o3b3l17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3679,13 +3679,13 @@ $echo "Test 12bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12bb.O $srcdir/o3b3Sl17f-tn > /dev/null 2>&1 + diff -a 12bb.O $srcdir/o3b3Sl17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12bb"; fi ;; 1) $echo "Test 12bb failed: files 12bb.O and $srcdir/o3b3Sl17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12bb may have failed." 1>&2; - $echo The command "cmp 12bb.O $srcdir/o3b3Sl17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12bb.O $srcdir/o3b3Sl17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3696,13 +3696,13 @@ $echo "Test 12bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12bc.O $srcdir/o3b3Snl17f-tn > /dev/null 2>&1 + diff -a 12bc.O $srcdir/o3b3Snl17f-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12bc"; fi ;; 1) $echo "Test 12bc failed: files 12bc.O and $srcdir/o3b3Snl17f-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12bc may have failed." 1>&2; - $echo The command "cmp 12bc.O $srcdir/o3b3Snl17f-tn" failed. 1>&2 ; + $echo The command "diff -a 12bc.O $srcdir/o3b3Snl17f-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3713,13 +3713,13 @@ $echo "Test 12ma failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12ma.O $srcdir/o3ml17f-bl-tn > /dev/null 2>&1 + diff -a 12ma.O $srcdir/o3ml17f-bl-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12ma"; fi ;; 1) $echo "Test 12ma failed: files 12ma.O and $srcdir/o3ml17f-bl-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12ma may have failed." 1>&2; - $echo The command "cmp 12ma.O $srcdir/o3ml17f-bl-tn" failed. 1>&2 ; + $echo The command "diff -a 12ma.O $srcdir/o3ml17f-bl-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3730,13 +3730,13 @@ $echo "Test 12mb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12mb.O $srcdir/o3mSl17f-bl-tn > /dev/null 2>&1 + diff -a 12mb.O $srcdir/o3mSl17f-bl-tn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12mb"; fi ;; 1) $echo "Test 12mb failed: files 12mb.O and $srcdir/o3mSl17f-bl-tn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12mb may have failed." 1>&2; - $echo The command "cmp 12mb.O $srcdir/o3mSl17f-bl-tn" failed. 1>&2 ; + $echo The command "diff -a 12mb.O $srcdir/o3mSl17f-bl-tn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3747,13 +3747,13 @@ $echo "Test 12mc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12mc.O $srcdir/o3mSnl17fbltn > /dev/null 2>&1 + diff -a 12mc.O $srcdir/o3mSnl17fbltn > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12mc"; fi ;; 1) $echo "Test 12mc failed: files 12mc.O and $srcdir/o3mSnl17fbltn differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12mc may have failed." 1>&2; - $echo The command "cmp 12mc.O $srcdir/o3mSnl17fbltn" failed. 1>&2 ; + $echo The command "diff -a 12mc.O $srcdir/o3mSnl17fbltn" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3764,13 +3764,13 @@ $echo "Test 12md failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12md.O $srcdir/o3Jml17f-lm-lo > /dev/null 2>&1 + diff -a 12md.O $srcdir/o3Jml17f-lm-lo > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12md"; fi ;; 1) $echo "Test 12md failed: files 12md.O and $srcdir/o3Jml17f-lm-lo differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12md may have failed." 1>&2; - $echo The command "cmp 12md.O $srcdir/o3Jml17f-lm-lo" failed. 1>&2 ; + $echo The command "diff -a 12md.O $srcdir/o3Jml17f-lm-lo" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3781,13 +3781,13 @@ $echo "Test 13a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13a.O $srcdir/tne8-t_tab > /dev/null 2>&1 + diff -a 13a.O $srcdir/tne8-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13a"; fi ;; 1) $echo "Test 13a failed: files 13a.O and $srcdir/tne8-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13a may have failed." 1>&2; - $echo The command "cmp 13a.O $srcdir/tne8-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13a.O $srcdir/tne8-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3798,13 +3798,13 @@ $echo "Test 13b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13b.O $srcdir/tne8o3-t_tab > /dev/null 2>&1 + diff -a 13b.O $srcdir/tne8o3-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13b"; fi ;; 1) $echo "Test 13b failed: files 13b.O and $srcdir/tne8o3-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13b may have failed." 1>&2; - $echo The command "cmp 13b.O $srcdir/tne8o3-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13b.O $srcdir/tne8o3-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3815,13 +3815,13 @@ $echo "Test 13ba failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13ba.O $srcdir/tn2e8-t_tab > /dev/null 2>&1 + diff -a 13ba.O $srcdir/tn2e8-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13ba"; fi ;; 1) $echo "Test 13ba failed: files 13ba.O and $srcdir/tn2e8-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13ba may have failed." 1>&2; - $echo The command "cmp 13ba.O $srcdir/tn2e8-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13ba.O $srcdir/tn2e8-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3832,13 +3832,13 @@ $echo "Test 13bb failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13bb.O $srcdir/tn_2e8-t_tab > /dev/null 2>&1 + diff -a 13bb.O $srcdir/tn_2e8-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13bb"; fi ;; 1) $echo "Test 13bb failed: files 13bb.O and $srcdir/tn_2e8-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13bb may have failed." 1>&2; - $echo The command "cmp 13bb.O $srcdir/tn_2e8-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13bb.O $srcdir/tn_2e8-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3849,13 +3849,13 @@ $echo "Test 13bc failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13bc.O $srcdir/tn_2e8S-t_tab > /dev/null 2>&1 + diff -a 13bc.O $srcdir/tn_2e8S-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13bc"; fi ;; 1) $echo "Test 13bc failed: files 13bc.O and $srcdir/tn_2e8S-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13bc may have failed." 1>&2; - $echo The command "cmp 13bc.O $srcdir/tn_2e8S-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13bc.O $srcdir/tn_2e8S-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3866,13 +3866,13 @@ $echo "Test 13bd failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13bd.O $srcdir/tn2e8o3-t_tab > /dev/null 2>&1 + diff -a 13bd.O $srcdir/tn2e8o3-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13bd"; fi ;; 1) $echo "Test 13bd failed: files 13bd.O and $srcdir/tn2e8o3-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13bd may have failed." 1>&2; - $echo The command "cmp 13bd.O $srcdir/tn2e8o3-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13bd.O $srcdir/tn2e8o3-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3883,13 +3883,13 @@ $echo "Test 13be failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13be.O $srcdir/tn2e5o3-t_tab > /dev/null 2>&1 + diff -a 13be.O $srcdir/tn2e5o3-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13be"; fi ;; 1) $echo "Test 13be failed: files 13be.O and $srcdir/tn2e5o3-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13be may have failed." 1>&2; - $echo The command "cmp 13be.O $srcdir/tn2e5o3-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13be.O $srcdir/tn2e5o3-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3900,13 +3900,13 @@ $echo "Test 13bf failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13bf.O $srcdir/tn2e8-t_tab > /dev/null 2>&1 + diff -a 13bf.O $srcdir/tn2e8-t_tab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13bf"; fi ;; 1) $echo "Test 13bf failed: files 13bf.O and $srcdir/tn2e8-t_tab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13bf may have failed." 1>&2; - $echo The command "cmp 13bf.O $srcdir/tn2e8-t_tab" failed. 1>&2 ; + $echo The command "diff -a 13bf.O $srcdir/tn2e8-t_tab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3917,13 +3917,13 @@ $echo "Test 14a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14a.O $srcdir/2f-t_notab > /dev/null 2>&1 + diff -a 14a.O $srcdir/2f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14a"; fi ;; 1) $echo "Test 14a failed: files 14a.O and $srcdir/2f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14a may have failed." 1>&2; - $echo The command "cmp 14a.O $srcdir/2f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14a.O $srcdir/2f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3934,13 +3934,13 @@ $echo "Test 14b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14b.O $srcdir/2sf-t_notab > /dev/null 2>&1 + diff -a 14b.O $srcdir/2sf-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14b"; fi ;; 1) $echo "Test 14b failed: files 14b.O and $srcdir/2sf-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14b may have failed." 1>&2; - $echo The command "cmp 14b.O $srcdir/2sf-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14b.O $srcdir/2sf-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3951,13 +3951,13 @@ $echo "Test 14c failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14c.O $srcdir/2s_f-t_notab > /dev/null 2>&1 + diff -a 14c.O $srcdir/2s_f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14c"; fi ;; 1) $echo "Test 14c failed: files 14c.O and $srcdir/2s_f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14c may have failed." 1>&2; - $echo The command "cmp 14c.O $srcdir/2s_f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14c.O $srcdir/2s_f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3968,13 +3968,13 @@ $echo "Test 14d failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14d.O $srcdir/2w60f-t_notab > /dev/null 2>&1 + diff -a 14d.O $srcdir/2w60f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14d"; fi ;; 1) $echo "Test 14d failed: files 14d.O and $srcdir/2w60f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14d may have failed." 1>&2; - $echo The command "cmp 14d.O $srcdir/2w60f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14d.O $srcdir/2w60f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -3985,13 +3985,13 @@ $echo "Test 14e failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14e.O $srcdir/2sw60f-t_notab > /dev/null 2>&1 + diff -a 14e.O $srcdir/2sw60f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14e"; fi ;; 1) $echo "Test 14e failed: files 14e.O and $srcdir/2sw60f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14e may have failed." 1>&2; - $echo The command "cmp 14e.O $srcdir/2sw60f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14e.O $srcdir/2sw60f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4002,13 +4002,13 @@ $echo "Test 14f failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14f.O $srcdir/2s_w60f-t_nota > /dev/null 2>&1 + diff -a 14f.O $srcdir/2s_w60f-t_nota > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14f"; fi ;; 1) $echo "Test 14f failed: files 14f.O and $srcdir/2s_w60f-t_nota differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14f may have failed." 1>&2; - $echo The command "cmp 14f.O $srcdir/2s_w60f-t_nota" failed. 1>&2 ; + $echo The command "diff -a 14f.O $srcdir/2s_w60f-t_nota" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4019,13 +4019,13 @@ $echo "Test 14g failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14g.O $srcdir/2Sf-t_notab > /dev/null 2>&1 + diff -a 14g.O $srcdir/2Sf-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14g"; fi ;; 1) $echo "Test 14g failed: files 14g.O and $srcdir/2Sf-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14g may have failed." 1>&2; - $echo The command "cmp 14g.O $srcdir/2Sf-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14g.O $srcdir/2Sf-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4036,13 +4036,13 @@ $echo "Test 14h failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14h.O $srcdir/2sf-t_notab > /dev/null 2>&1 + diff -a 14h.O $srcdir/2sf-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14h"; fi ;; 1) $echo "Test 14h failed: files 14h.O and $srcdir/2sf-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14h may have failed." 1>&2; - $echo The command "cmp 14h.O $srcdir/2sf-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14h.O $srcdir/2sf-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4053,13 +4053,13 @@ $echo "Test 14i failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14i.O $srcdir/2S_f-t_notab > /dev/null 2>&1 + diff -a 14i.O $srcdir/2S_f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14i"; fi ;; 1) $echo "Test 14i failed: files 14i.O and $srcdir/2S_f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14i may have failed." 1>&2; - $echo The command "cmp 14i.O $srcdir/2S_f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14i.O $srcdir/2S_f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4070,13 +4070,13 @@ $echo "Test 14j failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14j.O $srcdir/2s_f-t_notab > /dev/null 2>&1 + diff -a 14j.O $srcdir/2s_f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14j"; fi ;; 1) $echo "Test 14j failed: files 14j.O and $srcdir/2s_f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14j may have failed." 1>&2; - $echo The command "cmp 14j.O $srcdir/2s_f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14j.O $srcdir/2s_f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4087,13 +4087,13 @@ $echo "Test 14k failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14k.O $srcdir/2w60f-t_notab > /dev/null 2>&1 + diff -a 14k.O $srcdir/2w60f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14k"; fi ;; 1) $echo "Test 14k failed: files 14k.O and $srcdir/2w60f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14k may have failed." 1>&2; - $echo The command "cmp 14k.O $srcdir/2w60f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14k.O $srcdir/2w60f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4104,13 +4104,13 @@ $echo "Test 14l failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14l.O $srcdir/2sw60f-t_notab > /dev/null 2>&1 + diff -a 14l.O $srcdir/2sw60f-t_notab > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14l"; fi ;; 1) $echo "Test 14l failed: files 14l.O and $srcdir/2sw60f-t_notab differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14l may have failed." 1>&2; - $echo The command "cmp 14l.O $srcdir/2sw60f-t_notab" failed. 1>&2 ; + $echo The command "diff -a 14l.O $srcdir/2sw60f-t_notab" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4121,13 +4121,13 @@ $echo "Test 14m failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14m.O $srcdir/2s_w60f-t_nota > /dev/null 2>&1 + diff -a 14m.O $srcdir/2s_w60f-t_nota > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14m"; fi ;; 1) $echo "Test 14m failed: files 14m.O and $srcdir/2s_w60f-t_nota differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14m may have failed." 1>&2; - $echo The command "cmp 14m.O $srcdir/2s_w60f-t_nota" failed. 1>&2 ; + $echo The command "diff -a 14m.O $srcdir/2s_w60f-t_nota" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4138,13 +4138,13 @@ $echo "Test i-opt-a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i-opt-a.O $srcdir/i-opt-a.X > /dev/null 2>&1 + diff -a i-opt-a.O $srcdir/i-opt-a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i-opt-a"; fi ;; 1) $echo "Test i-opt-a failed: files i-opt-a.O and $srcdir/i-opt-a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i-opt-a may have failed." 1>&2; - $echo The command "cmp i-opt-a.O $srcdir/i-opt-a.X" failed. 1>&2 ; + $echo The command "diff -a i-opt-a.O $srcdir/i-opt-a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4155,13 +4155,13 @@ $echo "Test i-opt-b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i-opt-b.O $srcdir/i-opt-b.X > /dev/null 2>&1 + diff -a i-opt-b.O $srcdir/i-opt-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i-opt-b"; fi ;; 1) $echo "Test i-opt-b failed: files i-opt-b.O and $srcdir/i-opt-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i-opt-b may have failed." 1>&2; - $echo The command "cmp i-opt-b.O $srcdir/i-opt-b.X" failed. 1>&2 ; + $echo The command "diff -a i-opt-b.O $srcdir/i-opt-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4172,13 +4172,13 @@ $echo "Test ncut-a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ncut-a.O $srcdir/ncut-a.X > /dev/null 2>&1 + diff -a ncut-a.O $srcdir/ncut-a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ncut-a"; fi ;; 1) $echo "Test ncut-a failed: files ncut-a.O and $srcdir/ncut-a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ncut-a may have failed." 1>&2; - $echo The command "cmp ncut-a.O $srcdir/ncut-a.X" failed. 1>&2 ; + $echo The command "diff -a ncut-a.O $srcdir/ncut-a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4189,13 +4189,13 @@ $echo "Test ncut-b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ncut-b.O $srcdir/ncut-b.X > /dev/null 2>&1 + diff -a ncut-b.O $srcdir/ncut-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ncut-b"; fi ;; 1) $echo "Test ncut-b failed: files ncut-b.O and $srcdir/ncut-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ncut-b may have failed." 1>&2; - $echo The command "cmp ncut-b.O $srcdir/ncut-b.X" failed. 1>&2 ; + $echo The command "diff -a ncut-b.O $srcdir/ncut-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4206,13 +4206,13 @@ $echo "Test margin-0 failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp margin-0.O $srcdir/margin-0.X > /dev/null 2>&1 + diff -a margin-0.O $srcdir/margin-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed margin-0"; fi ;; 1) $echo "Test margin-0 failed: files margin-0.O and $srcdir/margin-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test margin-0 may have failed." 1>&2; - $echo The command "cmp margin-0.O $srcdir/margin-0.X" failed. 1>&2 ; + $echo The command "diff -a margin-0.O $srcdir/margin-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4223,13 +4223,13 @@ $echo "Test dbl-sp-a failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp dbl-sp-a.O $srcdir/dbl-sp-a.X > /dev/null 2>&1 + diff -a dbl-sp-a.O $srcdir/dbl-sp-a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed dbl-sp-a"; fi ;; 1) $echo "Test dbl-sp-a failed: files dbl-sp-a.O and $srcdir/dbl-sp-a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test dbl-sp-a may have failed." 1>&2; - $echo The command "cmp dbl-sp-a.O $srcdir/dbl-sp-a.X" failed. 1>&2 ; + $echo The command "diff -a dbl-sp-a.O $srcdir/dbl-sp-a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -4240,13 +4240,13 @@ $echo "Test dbl-sp-b failed: ../../src/pr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp dbl-sp-b.O $srcdir/dbl-sp-b.X > /dev/null 2>&1 + diff -a dbl-sp-b.O $srcdir/dbl-sp-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed dbl-sp-b"; fi ;; 1) $echo "Test dbl-sp-b failed: files dbl-sp-b.O and $srcdir/dbl-sp-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test dbl-sp-b may have failed." 1>&2; - $echo The command "cmp dbl-sp-b.O $srcdir/dbl-sp-b.X" failed. 1>&2 ; + $echo The command "diff -a dbl-sp-b.O $srcdir/dbl-sp-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/sort/sort-tests Sat May 22 02:41:06 1999 +++ gnu/textutils-2.0/tests/sort/sort-tests Sun Oct 21 00:20:18 2001 @@ -24,13 +24,13 @@ $echo "Test n1 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n1.O $srcdir/n1.X > /dev/null 2>&1 + diff -a n1.O $srcdir/n1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n1"; fi ;; 1) $echo "Test n1 failed: files n1.O and $srcdir/n1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n1 may have failed." 1>&2; - $echo The command "cmp n1.O $srcdir/n1.X" failed. 1>&2 ; + $echo The command "diff -a n1.O $srcdir/n1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test n2 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n2.O $srcdir/n2.X > /dev/null 2>&1 + diff -a n2.O $srcdir/n2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n2"; fi ;; 1) $echo "Test n2 failed: files n2.O and $srcdir/n2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n2 may have failed." 1>&2; - $echo The command "cmp n2.O $srcdir/n2.X" failed. 1>&2 ; + $echo The command "diff -a n2.O $srcdir/n2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test n3 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n3.O $srcdir/n3.X > /dev/null 2>&1 + diff -a n3.O $srcdir/n3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n3"; fi ;; 1) $echo "Test n3 failed: files n3.O and $srcdir/n3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n3 may have failed." 1>&2; - $echo The command "cmp n3.O $srcdir/n3.X" failed. 1>&2 ; + $echo The command "diff -a n3.O $srcdir/n3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test n4 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n4.O $srcdir/n4.X > /dev/null 2>&1 + diff -a n4.O $srcdir/n4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n4"; fi ;; 1) $echo "Test n4 failed: files n4.O and $srcdir/n4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n4 may have failed." 1>&2; - $echo The command "cmp n4.O $srcdir/n4.X" failed. 1>&2 ; + $echo The command "diff -a n4.O $srcdir/n4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test n5 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n5.O $srcdir/n5.X > /dev/null 2>&1 + diff -a n5.O $srcdir/n5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n5"; fi ;; 1) $echo "Test n5 failed: files n5.O and $srcdir/n5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n5 may have failed." 1>&2; - $echo The command "cmp n5.O $srcdir/n5.X" failed. 1>&2 ; + $echo The command "diff -a n5.O $srcdir/n5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test n6 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n6.O $srcdir/n6.X > /dev/null 2>&1 + diff -a n6.O $srcdir/n6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n6"; fi ;; 1) $echo "Test n6 failed: files n6.O and $srcdir/n6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n6 may have failed." 1>&2; - $echo The command "cmp n6.O $srcdir/n6.X" failed. 1>&2 ; + $echo The command "diff -a n6.O $srcdir/n6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test n7 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n7.O $srcdir/n7.X > /dev/null 2>&1 + diff -a n7.O $srcdir/n7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n7"; fi ;; 1) $echo "Test n7 failed: files n7.O and $srcdir/n7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n7 may have failed." 1>&2; - $echo The command "cmp n7.O $srcdir/n7.X" failed. 1>&2 ; + $echo The command "diff -a n7.O $srcdir/n7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test n8a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n8a.O $srcdir/n8a.X > /dev/null 2>&1 + diff -a n8a.O $srcdir/n8a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n8a"; fi ;; 1) $echo "Test n8a failed: files n8a.O and $srcdir/n8a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n8a may have failed." 1>&2; - $echo The command "cmp n8a.O $srcdir/n8a.X" failed. 1>&2 ; + $echo The command "diff -a n8a.O $srcdir/n8a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test n8b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n8b.O $srcdir/n8b.X > /dev/null 2>&1 + diff -a n8b.O $srcdir/n8b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n8b"; fi ;; 1) $echo "Test n8b failed: files n8b.O and $srcdir/n8b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n8b may have failed." 1>&2; - $echo The command "cmp n8b.O $srcdir/n8b.X" failed. 1>&2 ; + $echo The command "diff -a n8b.O $srcdir/n8b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test n9a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n9a.O $srcdir/n9a.X > /dev/null 2>&1 + diff -a n9a.O $srcdir/n9a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n9a"; fi ;; 1) $echo "Test n9a failed: files n9a.O and $srcdir/n9a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n9a may have failed." 1>&2; - $echo The command "cmp n9a.O $srcdir/n9a.X" failed. 1>&2 ; + $echo The command "diff -a n9a.O $srcdir/n9a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test n9b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n9b.O $srcdir/n9b.X > /dev/null 2>&1 + diff -a n9b.O $srcdir/n9b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n9b"; fi ;; 1) $echo "Test n9b failed: files n9b.O and $srcdir/n9b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n9b may have failed." 1>&2; - $echo The command "cmp n9b.O $srcdir/n9b.X" failed. 1>&2 ; + $echo The command "diff -a n9b.O $srcdir/n9b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test n10a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n10a.O $srcdir/n10a.X > /dev/null 2>&1 + diff -a n10a.O $srcdir/n10a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n10a"; fi ;; 1) $echo "Test n10a failed: files n10a.O and $srcdir/n10a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n10a may have failed." 1>&2; - $echo The command "cmp n10a.O $srcdir/n10a.X" failed. 1>&2 ; + $echo The command "diff -a n10a.O $srcdir/n10a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test n10b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n10b.O $srcdir/n10b.X > /dev/null 2>&1 + diff -a n10b.O $srcdir/n10b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n10b"; fi ;; 1) $echo "Test n10b failed: files n10b.O and $srcdir/n10b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n10b may have failed." 1>&2; - $echo The command "cmp n10b.O $srcdir/n10b.X" failed. 1>&2 ; + $echo The command "diff -a n10b.O $srcdir/n10b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test n11a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n11a.O $srcdir/n11a.X > /dev/null 2>&1 + diff -a n11a.O $srcdir/n11a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n11a"; fi ;; 1) $echo "Test n11a failed: files n11a.O and $srcdir/n11a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n11a may have failed." 1>&2; - $echo The command "cmp n11a.O $srcdir/n11a.X" failed. 1>&2 ; + $echo The command "diff -a n11a.O $srcdir/n11a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test n11b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n11b.O $srcdir/n11b.X > /dev/null 2>&1 + diff -a n11b.O $srcdir/n11b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n11b"; fi ;; 1) $echo "Test n11b failed: files n11b.O and $srcdir/n11b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n11b may have failed." 1>&2; - $echo The command "cmp n11b.O $srcdir/n11b.X" failed. 1>&2 ; + $echo The command "diff -a n11b.O $srcdir/n11b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 01a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 01a.O $srcdir/01a.X > /dev/null 2>&1 + diff -a 01a.O $srcdir/01a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 01a"; fi ;; 1) $echo "Test 01a failed: files 01a.O and $srcdir/01a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 01a may have failed." 1>&2; - $echo The command "cmp 01a.O $srcdir/01a.X" failed. 1>&2 ; + $echo The command "diff -a 01a.O $srcdir/01a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 02a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 02a.O $srcdir/02a.X > /dev/null 2>&1 + diff -a 02a.O $srcdir/02a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02a"; fi ;; 1) $echo "Test 02a failed: files 02a.O and $srcdir/02a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02a may have failed." 1>&2; - $echo The command "cmp 02a.O $srcdir/02a.X" failed. 1>&2 ; + $echo The command "diff -a 02a.O $srcdir/02a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 02b failed: ../../src/sort return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 02b.O $srcdir/02b.X > /dev/null 2>&1 + diff -a 02b.O $srcdir/02b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02b"; fi ;; 1) $echo "Test 02b failed: files 02b.O and $srcdir/02b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02b may have failed." 1>&2; - $echo The command "cmp 02b.O $srcdir/02b.X" failed. 1>&2 ; + $echo The command "diff -a 02b.O $srcdir/02b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test 02c failed: ../../src/sort return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 02c.O $srcdir/02c.X > /dev/null 2>&1 + diff -a 02c.O $srcdir/02c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02c"; fi ;; 1) $echo "Test 02c failed: files 02c.O and $srcdir/02c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02c may have failed." 1>&2; - $echo The command "cmp 02c.O $srcdir/02c.X" failed. 1>&2 ; + $echo The command "diff -a 02c.O $srcdir/02c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test 02d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 02d.O $srcdir/02d.X > /dev/null 2>&1 + diff -a 02d.O $srcdir/02d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02d"; fi ;; 1) $echo "Test 02d failed: files 02d.O and $srcdir/02d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02d may have failed." 1>&2; - $echo The command "cmp 02d.O $srcdir/02d.X" failed. 1>&2 ; + $echo The command "diff -a 02d.O $srcdir/02d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test 02e failed: ../../src/sort return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 02e.O $srcdir/02e.X > /dev/null 2>&1 + diff -a 02e.O $srcdir/02e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02e"; fi ;; 1) $echo "Test 02e failed: files 02e.O and $srcdir/02e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02e may have failed." 1>&2; - $echo The command "cmp 02e.O $srcdir/02e.X" failed. 1>&2 ; + $echo The command "diff -a 02e.O $srcdir/02e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test 02f failed: ../../src/sort return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 02f.O $srcdir/02f.X > /dev/null 2>&1 + diff -a 02f.O $srcdir/02f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 02f"; fi ;; 1) $echo "Test 02f failed: files 02f.O and $srcdir/02f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 02f may have failed." 1>&2; - $echo The command "cmp 02f.O $srcdir/02f.X" failed. 1>&2 ; + $echo The command "diff -a 02f.O $srcdir/02f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test 03a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03a.O $srcdir/03a.X > /dev/null 2>&1 + diff -a 03a.O $srcdir/03a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03a"; fi ;; 1) $echo "Test 03a failed: files 03a.O and $srcdir/03a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03a may have failed." 1>&2; - $echo The command "cmp 03a.O $srcdir/03a.X" failed. 1>&2 ; + $echo The command "diff -a 03a.O $srcdir/03a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test 03b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03b.O $srcdir/03b.X > /dev/null 2>&1 + diff -a 03b.O $srcdir/03b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03b"; fi ;; 1) $echo "Test 03b failed: files 03b.O and $srcdir/03b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03b may have failed." 1>&2; - $echo The command "cmp 03b.O $srcdir/03b.X" failed. 1>&2 ; + $echo The command "diff -a 03b.O $srcdir/03b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test 03c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03c.O $srcdir/03c.X > /dev/null 2>&1 + diff -a 03c.O $srcdir/03c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03c"; fi ;; 1) $echo "Test 03c failed: files 03c.O and $srcdir/03c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03c may have failed." 1>&2; - $echo The command "cmp 03c.O $srcdir/03c.X" failed. 1>&2 ; + $echo The command "diff -a 03c.O $srcdir/03c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test 03d failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp 03d.O $srcdir/03d.X > /dev/null 2>&1 + diff -a 03d.O $srcdir/03d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03d"; fi ;; 1) $echo "Test 03d failed: files 03d.O and $srcdir/03d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03d may have failed." 1>&2; - $echo The command "cmp 03d.O $srcdir/03d.X" failed. 1>&2 ; + $echo The command "diff -a 03d.O $srcdir/03d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test 03e failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp 03e.O $srcdir/03e.X > /dev/null 2>&1 + diff -a 03e.O $srcdir/03e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03e"; fi ;; 1) $echo "Test 03e failed: files 03e.O and $srcdir/03e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03e may have failed." 1>&2; - $echo The command "cmp 03e.O $srcdir/03e.X" failed. 1>&2 ; + $echo The command "diff -a 03e.O $srcdir/03e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test 03f failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp 03f.O $srcdir/03f.X > /dev/null 2>&1 + diff -a 03f.O $srcdir/03f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03f"; fi ;; 1) $echo "Test 03f failed: files 03f.O and $srcdir/03f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03f may have failed." 1>&2; - $echo The command "cmp 03f.O $srcdir/03f.X" failed. 1>&2 ; + $echo The command "diff -a 03f.O $srcdir/03f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test 03g failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03g.O $srcdir/03g.X > /dev/null 2>&1 + diff -a 03g.O $srcdir/03g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03g"; fi ;; 1) $echo "Test 03g failed: files 03g.O and $srcdir/03g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03g may have failed." 1>&2; - $echo The command "cmp 03g.O $srcdir/03g.X" failed. 1>&2 ; + $echo The command "diff -a 03g.O $srcdir/03g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test 03h failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03h.O $srcdir/03h.X > /dev/null 2>&1 + diff -a 03h.O $srcdir/03h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03h"; fi ;; 1) $echo "Test 03h failed: files 03h.O and $srcdir/03h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03h may have failed." 1>&2; - $echo The command "cmp 03h.O $srcdir/03h.X" failed. 1>&2 ; + $echo The command "diff -a 03h.O $srcdir/03h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test 03i failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 03i.O $srcdir/03i.X > /dev/null 2>&1 + diff -a 03i.O $srcdir/03i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 03i"; fi ;; 1) $echo "Test 03i failed: files 03i.O and $srcdir/03i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 03i may have failed." 1>&2; - $echo The command "cmp 03i.O $srcdir/03i.X" failed. 1>&2 ; + $echo The command "diff -a 03i.O $srcdir/03i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test 04a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 04a.O $srcdir/04a.X > /dev/null 2>&1 + diff -a 04a.O $srcdir/04a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 04a"; fi ;; 1) $echo "Test 04a failed: files 04a.O and $srcdir/04a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 04a may have failed." 1>&2; - $echo The command "cmp 04a.O $srcdir/04a.X" failed. 1>&2 ; + $echo The command "diff -a 04a.O $srcdir/04a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test 04b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 04b.O $srcdir/04b.X > /dev/null 2>&1 + diff -a 04b.O $srcdir/04b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 04b"; fi ;; 1) $echo "Test 04b failed: files 04b.O and $srcdir/04b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 04b may have failed." 1>&2; - $echo The command "cmp 04b.O $srcdir/04b.X" failed. 1>&2 ; + $echo The command "diff -a 04b.O $srcdir/04b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test 04c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 04c.O $srcdir/04c.X > /dev/null 2>&1 + diff -a 04c.O $srcdir/04c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 04c"; fi ;; 1) $echo "Test 04c failed: files 04c.O and $srcdir/04c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 04c may have failed." 1>&2; - $echo The command "cmp 04c.O $srcdir/04c.X" failed. 1>&2 ; + $echo The command "diff -a 04c.O $srcdir/04c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test 04d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 04d.O $srcdir/04d.X > /dev/null 2>&1 + diff -a 04d.O $srcdir/04d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 04d"; fi ;; 1) $echo "Test 04d failed: files 04d.O and $srcdir/04d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 04d may have failed." 1>&2; - $echo The command "cmp 04d.O $srcdir/04d.X" failed. 1>&2 ; + $echo The command "diff -a 04d.O $srcdir/04d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test 04e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 04e.O $srcdir/04e.X > /dev/null 2>&1 + diff -a 04e.O $srcdir/04e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 04e"; fi ;; 1) $echo "Test 04e failed: files 04e.O and $srcdir/04e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 04e may have failed." 1>&2; - $echo The command "cmp 04e.O $srcdir/04e.X" failed. 1>&2 ; + $echo The command "diff -a 04e.O $srcdir/04e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test 05a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05a.O $srcdir/05a.X > /dev/null 2>&1 + diff -a 05a.O $srcdir/05a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05a"; fi ;; 1) $echo "Test 05a failed: files 05a.O and $srcdir/05a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05a may have failed." 1>&2; - $echo The command "cmp 05a.O $srcdir/05a.X" failed. 1>&2 ; + $echo The command "diff -a 05a.O $srcdir/05a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test 05b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05b.O $srcdir/05b.X > /dev/null 2>&1 + diff -a 05b.O $srcdir/05b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05b"; fi ;; 1) $echo "Test 05b failed: files 05b.O and $srcdir/05b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05b may have failed." 1>&2; - $echo The command "cmp 05b.O $srcdir/05b.X" failed. 1>&2 ; + $echo The command "diff -a 05b.O $srcdir/05b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test 05c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05c.O $srcdir/05c.X > /dev/null 2>&1 + diff -a 05c.O $srcdir/05c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05c"; fi ;; 1) $echo "Test 05c failed: files 05c.O and $srcdir/05c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05c may have failed." 1>&2; - $echo The command "cmp 05c.O $srcdir/05c.X" failed. 1>&2 ; + $echo The command "diff -a 05c.O $srcdir/05c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test 05d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05d.O $srcdir/05d.X > /dev/null 2>&1 + diff -a 05d.O $srcdir/05d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05d"; fi ;; 1) $echo "Test 05d failed: files 05d.O and $srcdir/05d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05d may have failed." 1>&2; - $echo The command "cmp 05d.O $srcdir/05d.X" failed. 1>&2 ; + $echo The command "diff -a 05d.O $srcdir/05d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test 05e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05e.O $srcdir/05e.X > /dev/null 2>&1 + diff -a 05e.O $srcdir/05e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05e"; fi ;; 1) $echo "Test 05e failed: files 05e.O and $srcdir/05e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05e may have failed." 1>&2; - $echo The command "cmp 05e.O $srcdir/05e.X" failed. 1>&2 ; + $echo The command "diff -a 05e.O $srcdir/05e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test 05f failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 05f.O $srcdir/05f.X > /dev/null 2>&1 + diff -a 05f.O $srcdir/05f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 05f"; fi ;; 1) $echo "Test 05f failed: files 05f.O and $srcdir/05f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 05f may have failed." 1>&2; - $echo The command "cmp 05f.O $srcdir/05f.X" failed. 1>&2 ; + $echo The command "diff -a 05f.O $srcdir/05f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test 06a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06a.O $srcdir/06a.X > /dev/null 2>&1 + diff -a 06a.O $srcdir/06a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06a"; fi ;; 1) $echo "Test 06a failed: files 06a.O and $srcdir/06a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06a may have failed." 1>&2; - $echo The command "cmp 06a.O $srcdir/06a.X" failed. 1>&2 ; + $echo The command "diff -a 06a.O $srcdir/06a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test 06b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06b.O $srcdir/06b.X > /dev/null 2>&1 + diff -a 06b.O $srcdir/06b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06b"; fi ;; 1) $echo "Test 06b failed: files 06b.O and $srcdir/06b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06b may have failed." 1>&2; - $echo The command "cmp 06b.O $srcdir/06b.X" failed. 1>&2 ; + $echo The command "diff -a 06b.O $srcdir/06b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test 06c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06c.O $srcdir/06c.X > /dev/null 2>&1 + diff -a 06c.O $srcdir/06c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06c"; fi ;; 1) $echo "Test 06c failed: files 06c.O and $srcdir/06c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06c may have failed." 1>&2; - $echo The command "cmp 06c.O $srcdir/06c.X" failed. 1>&2 ; + $echo The command "diff -a 06c.O $srcdir/06c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test 06d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06d.O $srcdir/06d.X > /dev/null 2>&1 + diff -a 06d.O $srcdir/06d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06d"; fi ;; 1) $echo "Test 06d failed: files 06d.O and $srcdir/06d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06d may have failed." 1>&2; - $echo The command "cmp 06d.O $srcdir/06d.X" failed. 1>&2 ; + $echo The command "diff -a 06d.O $srcdir/06d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test 06e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06e.O $srcdir/06e.X > /dev/null 2>&1 + diff -a 06e.O $srcdir/06e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06e"; fi ;; 1) $echo "Test 06e failed: files 06e.O and $srcdir/06e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06e may have failed." 1>&2; - $echo The command "cmp 06e.O $srcdir/06e.X" failed. 1>&2 ; + $echo The command "diff -a 06e.O $srcdir/06e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test 06f failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 06f.O $srcdir/06f.X > /dev/null 2>&1 + diff -a 06f.O $srcdir/06f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 06f"; fi ;; 1) $echo "Test 06f failed: files 06f.O and $srcdir/06f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 06f may have failed." 1>&2; - $echo The command "cmp 06f.O $srcdir/06f.X" failed. 1>&2 ; + $echo The command "diff -a 06f.O $srcdir/06f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test 07a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 07a.O $srcdir/07a.X > /dev/null 2>&1 + diff -a 07a.O $srcdir/07a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 07a"; fi ;; 1) $echo "Test 07a failed: files 07a.O and $srcdir/07a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 07a may have failed." 1>&2; - $echo The command "cmp 07a.O $srcdir/07a.X" failed. 1>&2 ; + $echo The command "diff -a 07a.O $srcdir/07a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test 07b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 07b.O $srcdir/07b.X > /dev/null 2>&1 + diff -a 07b.O $srcdir/07b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 07b"; fi ;; 1) $echo "Test 07b failed: files 07b.O and $srcdir/07b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 07b may have failed." 1>&2; - $echo The command "cmp 07b.O $srcdir/07b.X" failed. 1>&2 ; + $echo The command "diff -a 07b.O $srcdir/07b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test 07c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 07c.O $srcdir/07c.X > /dev/null 2>&1 + diff -a 07c.O $srcdir/07c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 07c"; fi ;; 1) $echo "Test 07c failed: files 07c.O and $srcdir/07c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 07c may have failed." 1>&2; - $echo The command "cmp 07c.O $srcdir/07c.X" failed. 1>&2 ; + $echo The command "diff -a 07c.O $srcdir/07c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test 07d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 07d.O $srcdir/07d.X > /dev/null 2>&1 + diff -a 07d.O $srcdir/07d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 07d"; fi ;; 1) $echo "Test 07d failed: files 07d.O and $srcdir/07d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 07d may have failed." 1>&2; - $echo The command "cmp 07d.O $srcdir/07d.X" failed. 1>&2 ; + $echo The command "diff -a 07d.O $srcdir/07d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test 08a failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp 08a.O $srcdir/08a.X > /dev/null 2>&1 + diff -a 08a.O $srcdir/08a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 08a"; fi ;; 1) $echo "Test 08a failed: files 08a.O and $srcdir/08a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 08a may have failed." 1>&2; - $echo The command "cmp 08a.O $srcdir/08a.X" failed. 1>&2 ; + $echo The command "diff -a 08a.O $srcdir/08a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test 08b failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp 08b.O $srcdir/08b.X > /dev/null 2>&1 + diff -a 08b.O $srcdir/08b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 08b"; fi ;; 1) $echo "Test 08b failed: files 08b.O and $srcdir/08b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 08b may have failed." 1>&2; - $echo The command "cmp 08b.O $srcdir/08b.X" failed. 1>&2 ; + $echo The command "diff -a 08b.O $srcdir/08b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test 09a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 09a.O $srcdir/09a.X > /dev/null 2>&1 + diff -a 09a.O $srcdir/09a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 09a"; fi ;; 1) $echo "Test 09a failed: files 09a.O and $srcdir/09a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 09a may have failed." 1>&2; - $echo The command "cmp 09a.O $srcdir/09a.X" failed. 1>&2 ; + $echo The command "diff -a 09a.O $srcdir/09a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test 09b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 09b.O $srcdir/09b.X > /dev/null 2>&1 + diff -a 09b.O $srcdir/09b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 09b"; fi ;; 1) $echo "Test 09b failed: files 09b.O and $srcdir/09b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 09b may have failed." 1>&2; - $echo The command "cmp 09b.O $srcdir/09b.X" failed. 1>&2 ; + $echo The command "diff -a 09b.O $srcdir/09b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test 09c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 09c.O $srcdir/09c.X > /dev/null 2>&1 + diff -a 09c.O $srcdir/09c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 09c"; fi ;; 1) $echo "Test 09c failed: files 09c.O and $srcdir/09c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 09c may have failed." 1>&2; - $echo The command "cmp 09c.O $srcdir/09c.X" failed. 1>&2 ; + $echo The command "diff -a 09c.O $srcdir/09c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test 09d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 09d.O $srcdir/09d.X > /dev/null 2>&1 + diff -a 09d.O $srcdir/09d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 09d"; fi ;; 1) $echo "Test 09d failed: files 09d.O and $srcdir/09d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 09d may have failed." 1>&2; - $echo The command "cmp 09d.O $srcdir/09d.X" failed. 1>&2 ; + $echo The command "diff -a 09d.O $srcdir/09d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test 10a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10a.O $srcdir/10a.X > /dev/null 2>&1 + diff -a 10a.O $srcdir/10a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10a"; fi ;; 1) $echo "Test 10a failed: files 10a.O and $srcdir/10a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10a may have failed." 1>&2; - $echo The command "cmp 10a.O $srcdir/10a.X" failed. 1>&2 ; + $echo The command "diff -a 10a.O $srcdir/10a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test 10b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10b.O $srcdir/10b.X > /dev/null 2>&1 + diff -a 10b.O $srcdir/10b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10b"; fi ;; 1) $echo "Test 10b failed: files 10b.O and $srcdir/10b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10b may have failed." 1>&2; - $echo The command "cmp 10b.O $srcdir/10b.X" failed. 1>&2 ; + $echo The command "diff -a 10b.O $srcdir/10b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test 10c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10c.O $srcdir/10c.X > /dev/null 2>&1 + diff -a 10c.O $srcdir/10c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10c"; fi ;; 1) $echo "Test 10c failed: files 10c.O and $srcdir/10c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10c may have failed." 1>&2; - $echo The command "cmp 10c.O $srcdir/10c.X" failed. 1>&2 ; + $echo The command "diff -a 10c.O $srcdir/10c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test 10d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10d.O $srcdir/10d.X > /dev/null 2>&1 + diff -a 10d.O $srcdir/10d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10d"; fi ;; 1) $echo "Test 10d failed: files 10d.O and $srcdir/10d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10d may have failed." 1>&2; - $echo The command "cmp 10d.O $srcdir/10d.X" failed. 1>&2 ; + $echo The command "diff -a 10d.O $srcdir/10d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test 10a0 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10a0.O $srcdir/10a0.X > /dev/null 2>&1 + diff -a 10a0.O $srcdir/10a0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10a0"; fi ;; 1) $echo "Test 10a0 failed: files 10a0.O and $srcdir/10a0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10a0 may have failed." 1>&2; - $echo The command "cmp 10a0.O $srcdir/10a0.X" failed. 1>&2 ; + $echo The command "diff -a 10a0.O $srcdir/10a0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test 10a1 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10a1.O $srcdir/10a1.X > /dev/null 2>&1 + diff -a 10a1.O $srcdir/10a1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10a1"; fi ;; 1) $echo "Test 10a1 failed: files 10a1.O and $srcdir/10a1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10a1 may have failed." 1>&2; - $echo The command "cmp 10a1.O $srcdir/10a1.X" failed. 1>&2 ; + $echo The command "diff -a 10a1.O $srcdir/10a1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test 10a2 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10a2.O $srcdir/10a2.X > /dev/null 2>&1 + diff -a 10a2.O $srcdir/10a2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10a2"; fi ;; 1) $echo "Test 10a2 failed: files 10a2.O and $srcdir/10a2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10a2 may have failed." 1>&2; - $echo The command "cmp 10a2.O $srcdir/10a2.X" failed. 1>&2 ; + $echo The command "diff -a 10a2.O $srcdir/10a2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test 10e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10e.O $srcdir/10e.X > /dev/null 2>&1 + diff -a 10e.O $srcdir/10e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10e"; fi ;; 1) $echo "Test 10e failed: files 10e.O and $srcdir/10e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10e may have failed." 1>&2; - $echo The command "cmp 10e.O $srcdir/10e.X" failed. 1>&2 ; + $echo The command "diff -a 10e.O $srcdir/10e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test 10f failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10f.O $srcdir/10f.X > /dev/null 2>&1 + diff -a 10f.O $srcdir/10f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10f"; fi ;; 1) $echo "Test 10f failed: files 10f.O and $srcdir/10f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10f may have failed." 1>&2; - $echo The command "cmp 10f.O $srcdir/10f.X" failed. 1>&2 ; + $echo The command "diff -a 10f.O $srcdir/10f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test 10g failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10g.O $srcdir/10g.X > /dev/null 2>&1 + diff -a 10g.O $srcdir/10g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10g"; fi ;; 1) $echo "Test 10g failed: files 10g.O and $srcdir/10g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10g may have failed." 1>&2; - $echo The command "cmp 10g.O $srcdir/10g.X" failed. 1>&2 ; + $echo The command "diff -a 10g.O $srcdir/10g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test 11a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11a.O $srcdir/11a.X > /dev/null 2>&1 + diff -a 11a.O $srcdir/11a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11a"; fi ;; 1) $echo "Test 11a failed: files 11a.O and $srcdir/11a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11a may have failed." 1>&2; - $echo The command "cmp 11a.O $srcdir/11a.X" failed. 1>&2 ; + $echo The command "diff -a 11a.O $srcdir/11a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test 11b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11b.O $srcdir/11b.X > /dev/null 2>&1 + diff -a 11b.O $srcdir/11b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11b"; fi ;; 1) $echo "Test 11b failed: files 11b.O and $srcdir/11b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11b may have failed." 1>&2; - $echo The command "cmp 11b.O $srcdir/11b.X" failed. 1>&2 ; + $echo The command "diff -a 11b.O $srcdir/11b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test 11c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11c.O $srcdir/11c.X > /dev/null 2>&1 + diff -a 11c.O $srcdir/11c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11c"; fi ;; 1) $echo "Test 11c failed: files 11c.O and $srcdir/11c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11c may have failed." 1>&2; - $echo The command "cmp 11c.O $srcdir/11c.X" failed. 1>&2 ; + $echo The command "diff -a 11c.O $srcdir/11c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test 11d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11d.O $srcdir/11d.X > /dev/null 2>&1 + diff -a 11d.O $srcdir/11d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11d"; fi ;; 1) $echo "Test 11d failed: files 11d.O and $srcdir/11d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11d may have failed." 1>&2; - $echo The command "cmp 11d.O $srcdir/11d.X" failed. 1>&2 ; + $echo The command "diff -a 11d.O $srcdir/11d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test 12a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12a.O $srcdir/12a.X > /dev/null 2>&1 + diff -a 12a.O $srcdir/12a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12a"; fi ;; 1) $echo "Test 12a failed: files 12a.O and $srcdir/12a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12a may have failed." 1>&2; - $echo The command "cmp 12a.O $srcdir/12a.X" failed. 1>&2 ; + $echo The command "diff -a 12a.O $srcdir/12a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test 12b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12b.O $srcdir/12b.X > /dev/null 2>&1 + diff -a 12b.O $srcdir/12b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12b"; fi ;; 1) $echo "Test 12b failed: files 12b.O and $srcdir/12b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12b may have failed." 1>&2; - $echo The command "cmp 12b.O $srcdir/12b.X" failed. 1>&2 ; + $echo The command "diff -a 12b.O $srcdir/12b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test 12c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12c.O $srcdir/12c.X > /dev/null 2>&1 + diff -a 12c.O $srcdir/12c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12c"; fi ;; 1) $echo "Test 12c failed: files 12c.O and $srcdir/12c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12c may have failed." 1>&2; - $echo The command "cmp 12c.O $srcdir/12c.X" failed. 1>&2 ; + $echo The command "diff -a 12c.O $srcdir/12c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test 12d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12d.O $srcdir/12d.X > /dev/null 2>&1 + diff -a 12d.O $srcdir/12d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12d"; fi ;; 1) $echo "Test 12d failed: files 12d.O and $srcdir/12d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12d may have failed." 1>&2; - $echo The command "cmp 12d.O $srcdir/12d.X" failed. 1>&2 ; + $echo The command "diff -a 12d.O $srcdir/12d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test 13a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13a.O $srcdir/13a.X > /dev/null 2>&1 + diff -a 13a.O $srcdir/13a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13a"; fi ;; 1) $echo "Test 13a failed: files 13a.O and $srcdir/13a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13a may have failed." 1>&2; - $echo The command "cmp 13a.O $srcdir/13a.X" failed. 1>&2 ; + $echo The command "diff -a 13a.O $srcdir/13a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test 13b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13b.O $srcdir/13b.X > /dev/null 2>&1 + diff -a 13b.O $srcdir/13b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13b"; fi ;; 1) $echo "Test 13b failed: files 13b.O and $srcdir/13b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13b may have failed." 1>&2; - $echo The command "cmp 13b.O $srcdir/13b.X" failed. 1>&2 ; + $echo The command "diff -a 13b.O $srcdir/13b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test 14a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14a.O $srcdir/14a.X > /dev/null 2>&1 + diff -a 14a.O $srcdir/14a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14a"; fi ;; 1) $echo "Test 14a failed: files 14a.O and $srcdir/14a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14a may have failed." 1>&2; - $echo The command "cmp 14a.O $srcdir/14a.X" failed. 1>&2 ; + $echo The command "diff -a 14a.O $srcdir/14a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test 14b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 14b.O $srcdir/14b.X > /dev/null 2>&1 + diff -a 14b.O $srcdir/14b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 14b"; fi ;; 1) $echo "Test 14b failed: files 14b.O and $srcdir/14b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 14b may have failed." 1>&2; - $echo The command "cmp 14b.O $srcdir/14b.X" failed. 1>&2 ; + $echo The command "diff -a 14b.O $srcdir/14b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test 15a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 15a.O $srcdir/15a.X > /dev/null 2>&1 + diff -a 15a.O $srcdir/15a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 15a"; fi ;; 1) $echo "Test 15a failed: files 15a.O and $srcdir/15a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 15a may have failed." 1>&2; - $echo The command "cmp 15a.O $srcdir/15a.X" failed. 1>&2 ; + $echo The command "diff -a 15a.O $srcdir/15a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test 15b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 15b.O $srcdir/15b.X > /dev/null 2>&1 + diff -a 15b.O $srcdir/15b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 15b"; fi ;; 1) $echo "Test 15b failed: files 15b.O and $srcdir/15b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 15b may have failed." 1>&2; - $echo The command "cmp 15b.O $srcdir/15b.X" failed. 1>&2 ; + $echo The command "diff -a 15b.O $srcdir/15b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test 15c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 15c.O $srcdir/15c.X > /dev/null 2>&1 + diff -a 15c.O $srcdir/15c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 15c"; fi ;; 1) $echo "Test 15c failed: files 15c.O and $srcdir/15c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 15c may have failed." 1>&2; - $echo The command "cmp 15c.O $srcdir/15c.X" failed. 1>&2 ; + $echo The command "diff -a 15c.O $srcdir/15c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test 15d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 15d.O $srcdir/15d.X > /dev/null 2>&1 + diff -a 15d.O $srcdir/15d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 15d"; fi ;; 1) $echo "Test 15d failed: files 15d.O and $srcdir/15d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 15d may have failed." 1>&2; - $echo The command "cmp 15d.O $srcdir/15d.X" failed. 1>&2 ; + $echo The command "diff -a 15d.O $srcdir/15d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test 15e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 15e.O $srcdir/15e.X > /dev/null 2>&1 + diff -a 15e.O $srcdir/15e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 15e"; fi ;; 1) $echo "Test 15e failed: files 15e.O and $srcdir/15e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 15e may have failed." 1>&2; - $echo The command "cmp 15e.O $srcdir/15e.X" failed. 1>&2 ; + $echo The command "diff -a 15e.O $srcdir/15e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test 16a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 16a.O $srcdir/16a.X > /dev/null 2>&1 + diff -a 16a.O $srcdir/16a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 16a"; fi ;; 1) $echo "Test 16a failed: files 16a.O and $srcdir/16a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 16a may have failed." 1>&2; - $echo The command "cmp 16a.O $srcdir/16a.X" failed. 1>&2 ; + $echo The command "diff -a 16a.O $srcdir/16a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test 17 failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 17.O $srcdir/17.X > /dev/null 2>&1 + diff -a 17.O $srcdir/17.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 17"; fi ;; 1) $echo "Test 17 failed: files 17.O and $srcdir/17.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 17 may have failed." 1>&2; - $echo The command "cmp 17.O $srcdir/17.X" failed. 1>&2 ; + $echo The command "diff -a 17.O $srcdir/17.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test 18a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 18a.O $srcdir/18a.X > /dev/null 2>&1 + diff -a 18a.O $srcdir/18a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 18a"; fi ;; 1) $echo "Test 18a failed: files 18a.O and $srcdir/18a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 18a may have failed." 1>&2; - $echo The command "cmp 18a.O $srcdir/18a.X" failed. 1>&2 ; + $echo The command "diff -a 18a.O $srcdir/18a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test 18b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 18b.O $srcdir/18b.X > /dev/null 2>&1 + diff -a 18b.O $srcdir/18b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 18b"; fi ;; 1) $echo "Test 18b failed: files 18b.O and $srcdir/18b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 18b may have failed." 1>&2; - $echo The command "cmp 18b.O $srcdir/18b.X" failed. 1>&2 ; + $echo The command "diff -a 18b.O $srcdir/18b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test 18c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 18c.O $srcdir/18c.X > /dev/null 2>&1 + diff -a 18c.O $srcdir/18c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 18c"; fi ;; 1) $echo "Test 18c failed: files 18c.O and $srcdir/18c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 18c may have failed." 1>&2; - $echo The command "cmp 18c.O $srcdir/18c.X" failed. 1>&2 ; + $echo The command "diff -a 18c.O $srcdir/18c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1554,13 +1554,13 @@ $echo "Test 18d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 18d.O $srcdir/18d.X > /dev/null 2>&1 + diff -a 18d.O $srcdir/18d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 18d"; fi ;; 1) $echo "Test 18d failed: files 18d.O and $srcdir/18d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 18d may have failed." 1>&2; - $echo The command "cmp 18d.O $srcdir/18d.X" failed. 1>&2 ; + $echo The command "diff -a 18d.O $srcdir/18d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1571,13 +1571,13 @@ $echo "Test 18e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 18e.O $srcdir/18e.X > /dev/null 2>&1 + diff -a 18e.O $srcdir/18e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 18e"; fi ;; 1) $echo "Test 18e failed: files 18e.O and $srcdir/18e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 18e may have failed." 1>&2; - $echo The command "cmp 18e.O $srcdir/18e.X" failed. 1>&2 ; + $echo The command "diff -a 18e.O $srcdir/18e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1588,13 +1588,13 @@ $echo "Test 19a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 19a.O $srcdir/19a.X > /dev/null 2>&1 + diff -a 19a.O $srcdir/19a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 19a"; fi ;; 1) $echo "Test 19a failed: files 19a.O and $srcdir/19a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 19a may have failed." 1>&2; - $echo The command "cmp 19a.O $srcdir/19a.X" failed. 1>&2 ; + $echo The command "diff -a 19a.O $srcdir/19a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1605,13 +1605,13 @@ $echo "Test 19b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 19b.O $srcdir/19b.X > /dev/null 2>&1 + diff -a 19b.O $srcdir/19b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 19b"; fi ;; 1) $echo "Test 19b failed: files 19b.O and $srcdir/19b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 19b may have failed." 1>&2; - $echo The command "cmp 19b.O $srcdir/19b.X" failed. 1>&2 ; + $echo The command "diff -a 19b.O $srcdir/19b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1622,13 +1622,13 @@ $echo "Test 20a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 20a.O $srcdir/20a.X > /dev/null 2>&1 + diff -a 20a.O $srcdir/20a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 20a"; fi ;; 1) $echo "Test 20a failed: files 20a.O and $srcdir/20a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 20a may have failed." 1>&2; - $echo The command "cmp 20a.O $srcdir/20a.X" failed. 1>&2 ; + $echo The command "diff -a 20a.O $srcdir/20a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1639,13 +1639,13 @@ $echo "Test 21a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21a.O $srcdir/21a.X > /dev/null 2>&1 + diff -a 21a.O $srcdir/21a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21a"; fi ;; 1) $echo "Test 21a failed: files 21a.O and $srcdir/21a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21a may have failed." 1>&2; - $echo The command "cmp 21a.O $srcdir/21a.X" failed. 1>&2 ; + $echo The command "diff -a 21a.O $srcdir/21a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1656,13 +1656,13 @@ $echo "Test 21b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21b.O $srcdir/21b.X > /dev/null 2>&1 + diff -a 21b.O $srcdir/21b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21b"; fi ;; 1) $echo "Test 21b failed: files 21b.O and $srcdir/21b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21b may have failed." 1>&2; - $echo The command "cmp 21b.O $srcdir/21b.X" failed. 1>&2 ; + $echo The command "diff -a 21b.O $srcdir/21b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1673,13 +1673,13 @@ $echo "Test 21c failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21c.O $srcdir/21c.X > /dev/null 2>&1 + diff -a 21c.O $srcdir/21c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21c"; fi ;; 1) $echo "Test 21c failed: files 21c.O and $srcdir/21c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21c may have failed." 1>&2; - $echo The command "cmp 21c.O $srcdir/21c.X" failed. 1>&2 ; + $echo The command "diff -a 21c.O $srcdir/21c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1690,13 +1690,13 @@ $echo "Test 21d failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21d.O $srcdir/21d.X > /dev/null 2>&1 + diff -a 21d.O $srcdir/21d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21d"; fi ;; 1) $echo "Test 21d failed: files 21d.O and $srcdir/21d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21d may have failed." 1>&2; - $echo The command "cmp 21d.O $srcdir/21d.X" failed. 1>&2 ; + $echo The command "diff -a 21d.O $srcdir/21d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1707,13 +1707,13 @@ $echo "Test 21e failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21e.O $srcdir/21e.X > /dev/null 2>&1 + diff -a 21e.O $srcdir/21e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21e"; fi ;; 1) $echo "Test 21e failed: files 21e.O and $srcdir/21e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21e may have failed." 1>&2; - $echo The command "cmp 21e.O $srcdir/21e.X" failed. 1>&2 ; + $echo The command "diff -a 21e.O $srcdir/21e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1724,13 +1724,13 @@ $echo "Test 21f failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21f.O $srcdir/21f.X > /dev/null 2>&1 + diff -a 21f.O $srcdir/21f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21f"; fi ;; 1) $echo "Test 21f failed: files 21f.O and $srcdir/21f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21f may have failed." 1>&2; - $echo The command "cmp 21f.O $srcdir/21f.X" failed. 1>&2 ; + $echo The command "diff -a 21f.O $srcdir/21f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1741,13 +1741,13 @@ $echo "Test 21g failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21g.O $srcdir/21g.X > /dev/null 2>&1 + diff -a 21g.O $srcdir/21g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21g"; fi ;; 1) $echo "Test 21g failed: files 21g.O and $srcdir/21g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21g may have failed." 1>&2; - $echo The command "cmp 21g.O $srcdir/21g.X" failed. 1>&2 ; + $echo The command "diff -a 21g.O $srcdir/21g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1758,13 +1758,13 @@ $echo "Test 22a failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 22a.O $srcdir/22a.X > /dev/null 2>&1 + diff -a 22a.O $srcdir/22a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 22a"; fi ;; 1) $echo "Test 22a failed: files 22a.O and $srcdir/22a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 22a may have failed." 1>&2; - $echo The command "cmp 22a.O $srcdir/22a.X" failed. 1>&2 ; + $echo The command "diff -a 22a.O $srcdir/22a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1775,13 +1775,13 @@ $echo "Test 22b failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 22b.O $srcdir/22b.X > /dev/null 2>&1 + diff -a 22b.O $srcdir/22b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 22b"; fi ;; 1) $echo "Test 22b failed: files 22b.O and $srcdir/22b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 22b may have failed." 1>&2; - $echo The command "cmp 22b.O $srcdir/22b.X" failed. 1>&2 ; + $echo The command "diff -a 22b.O $srcdir/22b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1792,13 +1792,13 @@ $echo "Test no-file1 failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp no-file1.O $srcdir/no-file1.X > /dev/null 2>&1 + diff -a no-file1.O $srcdir/no-file1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed no-file1"; fi ;; 1) $echo "Test no-file1 failed: files no-file1.O and $srcdir/no-file1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test no-file1 may have failed." 1>&2; - $echo The command "cmp no-file1.O $srcdir/no-file1.X" failed. 1>&2 ; + $echo The command "diff -a no-file1.O $srcdir/no-file1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1809,13 +1809,13 @@ $echo "Test o-no-file1 failed: ../../src/sort return code $code differs from expected value 2" 1>&2 errors=`expr $errors + 1` else - cmp o-no-file1.O $srcdir/o-no-file1.X > /dev/null 2>&1 + diff -a o-no-file1.O $srcdir/o-no-file1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o-no-file1"; fi ;; 1) $echo "Test o-no-file1 failed: files o-no-file1.O and $srcdir/o-no-file1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o-no-file1 may have failed." 1>&2; - $echo The command "cmp o-no-file1.O $srcdir/o-no-file1.X" failed. 1>&2 ; + $echo The command "diff -a o-no-file1.O $srcdir/o-no-file1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1826,13 +1826,13 @@ $echo "Test neg-nls failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp neg-nls.O $srcdir/neg-nls.X > /dev/null 2>&1 + diff -a neg-nls.O $srcdir/neg-nls.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed neg-nls"; fi ;; 1) $echo "Test neg-nls failed: files neg-nls.O and $srcdir/neg-nls.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test neg-nls may have failed." 1>&2; - $echo The command "cmp neg-nls.O $srcdir/neg-nls.X" failed. 1>&2 ; + $echo The command "diff -a neg-nls.O $srcdir/neg-nls.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1843,13 +1843,13 @@ $echo "Test nul-nls failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp nul-nls.O $srcdir/nul-nls.X > /dev/null 2>&1 + diff -a nul-nls.O $srcdir/nul-nls.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed nul-nls"; fi ;; 1) $echo "Test nul-nls failed: files nul-nls.O and $srcdir/nul-nls.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test nul-nls may have failed." 1>&2; - $echo The command "cmp nul-nls.O $srcdir/nul-nls.X" failed. 1>&2 ; + $echo The command "diff -a nul-nls.O $srcdir/nul-nls.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1860,13 +1860,13 @@ $echo "Test use-nl failed: ../../src/sort return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp use-nl.O $srcdir/use-nl.X > /dev/null 2>&1 + diff -a use-nl.O $srcdir/use-nl.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed use-nl"; fi ;; 1) $echo "Test use-nl failed: files use-nl.O and $srcdir/use-nl.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test use-nl may have failed." 1>&2; - $echo The command "cmp use-nl.O $srcdir/use-nl.X" failed. 1>&2 ; + $echo The command "diff -a use-nl.O $srcdir/use-nl.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/tac/tac-tests Fri Jan 29 13:56:18 1999 +++ gnu/textutils-2.0/tests/tac/tac-tests Sun Oct 21 00:20:44 2001 @@ -24,13 +24,13 @@ $echo "Test basic-0(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 + diff -a basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0(F)"; fi ;; 1) $echo "Test basic-0(F) failed: files basic-0.O and $srcdir/basic-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0(F) may have failed." 1>&2; - $echo The command "cmp basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; + $echo The command "diff -a basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test basic-0(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 + diff -a basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0(|)"; fi ;; 1) $echo "Test basic-0(|) failed: files basic-0.O and $srcdir/basic-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0(|) may have failed." 1>&2; - $echo The command "cmp basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; + $echo The command "diff -a basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test basic-0(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 + diff -a basic-0.O $srcdir/basic-0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-0(<)"; fi ;; 1) $echo "Test basic-0(<) failed: files basic-0.O and $srcdir/basic-0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-0(<) may have failed." 1>&2; - $echo The command "cmp basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; + $echo The command "diff -a basic-0.O $srcdir/basic-0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test basic-b(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 + diff -a basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-b(F)"; fi ;; 1) $echo "Test basic-b(F) failed: files basic-b.O and $srcdir/basic-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-b(F) may have failed." 1>&2; - $echo The command "cmp basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; + $echo The command "diff -a basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test basic-b(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 + diff -a basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-b(|)"; fi ;; 1) $echo "Test basic-b(|) failed: files basic-b.O and $srcdir/basic-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-b(|) may have failed." 1>&2; - $echo The command "cmp basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; + $echo The command "diff -a basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test basic-b(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 + diff -a basic-b.O $srcdir/basic-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-b(<)"; fi ;; 1) $echo "Test basic-b(<) failed: files basic-b.O and $srcdir/basic-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-b(<) may have failed." 1>&2; - $echo The command "cmp basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; + $echo The command "diff -a basic-b.O $srcdir/basic-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test basic-c(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 + diff -a basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-c(F)"; fi ;; 1) $echo "Test basic-c(F) failed: files basic-c.O and $srcdir/basic-c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-c(F) may have failed." 1>&2; - $echo The command "cmp basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; + $echo The command "diff -a basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test basic-c(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 + diff -a basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-c(|)"; fi ;; 1) $echo "Test basic-c(|) failed: files basic-c.O and $srcdir/basic-c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-c(|) may have failed." 1>&2; - $echo The command "cmp basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; + $echo The command "diff -a basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test basic-c(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 + diff -a basic-c.O $srcdir/basic-c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-c(<)"; fi ;; 1) $echo "Test basic-c(<) failed: files basic-c.O and $srcdir/basic-c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-c(<) may have failed." 1>&2; - $echo The command "cmp basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; + $echo The command "diff -a basic-c.O $srcdir/basic-c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test basic-e(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 + diff -a basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-e(F)"; fi ;; 1) $echo "Test basic-e(F) failed: files basic-e.O and $srcdir/basic-e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-e(F) may have failed." 1>&2; - $echo The command "cmp basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; + $echo The command "diff -a basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test basic-e(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 + diff -a basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-e(|)"; fi ;; 1) $echo "Test basic-e(|) failed: files basic-e.O and $srcdir/basic-e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-e(|) may have failed." 1>&2; - $echo The command "cmp basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; + $echo The command "diff -a basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test basic-e(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 + diff -a basic-e.O $srcdir/basic-e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-e(<)"; fi ;; 1) $echo "Test basic-e(<) failed: files basic-e.O and $srcdir/basic-e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-e(<) may have failed." 1>&2; - $echo The command "cmp basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; + $echo The command "diff -a basic-e.O $srcdir/basic-e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test basic-f(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 + diff -a basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-f(F)"; fi ;; 1) $echo "Test basic-f(F) failed: files basic-f.O and $srcdir/basic-f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-f(F) may have failed." 1>&2; - $echo The command "cmp basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; + $echo The command "diff -a basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test basic-f(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 + diff -a basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-f(|)"; fi ;; 1) $echo "Test basic-f(|) failed: files basic-f.O and $srcdir/basic-f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-f(|) may have failed." 1>&2; - $echo The command "cmp basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; + $echo The command "diff -a basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test basic-f(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 + diff -a basic-f.O $srcdir/basic-f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-f(<)"; fi ;; 1) $echo "Test basic-f(<) failed: files basic-f.O and $srcdir/basic-f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-f(<) may have failed." 1>&2; - $echo The command "cmp basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; + $echo The command "diff -a basic-f.O $srcdir/basic-f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test basic-g(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 + diff -a basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-g(F)"; fi ;; 1) $echo "Test basic-g(F) failed: files basic-g.O and $srcdir/basic-g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-g(F) may have failed." 1>&2; - $echo The command "cmp basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; + $echo The command "diff -a basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test basic-g(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 + diff -a basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-g(|)"; fi ;; 1) $echo "Test basic-g(|) failed: files basic-g.O and $srcdir/basic-g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-g(|) may have failed." 1>&2; - $echo The command "cmp basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; + $echo The command "diff -a basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test basic-g(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 + diff -a basic-g.O $srcdir/basic-g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-g(<)"; fi ;; 1) $echo "Test basic-g(<) failed: files basic-g.O and $srcdir/basic-g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-g(<) may have failed." 1>&2; - $echo The command "cmp basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; + $echo The command "diff -a basic-g.O $srcdir/basic-g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test basic-h(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 + diff -a basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-h(F)"; fi ;; 1) $echo "Test basic-h(F) failed: files basic-h.O and $srcdir/basic-h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-h(F) may have failed." 1>&2; - $echo The command "cmp basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; + $echo The command "diff -a basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test basic-h(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 + diff -a basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-h(|)"; fi ;; 1) $echo "Test basic-h(|) failed: files basic-h.O and $srcdir/basic-h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-h(|) may have failed." 1>&2; - $echo The command "cmp basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; + $echo The command "diff -a basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test basic-h(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 + diff -a basic-h.O $srcdir/basic-h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-h(<)"; fi ;; 1) $echo "Test basic-h(<) failed: files basic-h.O and $srcdir/basic-h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-h(<) may have failed." 1>&2; - $echo The command "cmp basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; + $echo The command "diff -a basic-h.O $srcdir/basic-h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test basic-i(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 + diff -a basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-i(F)"; fi ;; 1) $echo "Test basic-i(F) failed: files basic-i.O and $srcdir/basic-i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-i(F) may have failed." 1>&2; - $echo The command "cmp basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; + $echo The command "diff -a basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test basic-i(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 + diff -a basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-i(|)"; fi ;; 1) $echo "Test basic-i(|) failed: files basic-i.O and $srcdir/basic-i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-i(|) may have failed." 1>&2; - $echo The command "cmp basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; + $echo The command "diff -a basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test basic-i(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 + diff -a basic-i.O $srcdir/basic-i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-i(<)"; fi ;; 1) $echo "Test basic-i(<) failed: files basic-i.O and $srcdir/basic-i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-i(<) may have failed." 1>&2; - $echo The command "cmp basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; + $echo The command "diff -a basic-i.O $srcdir/basic-i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test basic-j(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 + diff -a basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-j(F)"; fi ;; 1) $echo "Test basic-j(F) failed: files basic-j.O and $srcdir/basic-j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-j(F) may have failed." 1>&2; - $echo The command "cmp basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; + $echo The command "diff -a basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test basic-j(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 + diff -a basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-j(|)"; fi ;; 1) $echo "Test basic-j(|) failed: files basic-j.O and $srcdir/basic-j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-j(|) may have failed." 1>&2; - $echo The command "cmp basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; + $echo The command "diff -a basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test basic-j(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 + diff -a basic-j.O $srcdir/basic-j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-j(<)"; fi ;; 1) $echo "Test basic-j(<) failed: files basic-j.O and $srcdir/basic-j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-j(<) may have failed." 1>&2; - $echo The command "cmp basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; + $echo The command "diff -a basic-j.O $srcdir/basic-j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test basic-k(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 + diff -a basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-k(F)"; fi ;; 1) $echo "Test basic-k(F) failed: files basic-k.O and $srcdir/basic-k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-k(F) may have failed." 1>&2; - $echo The command "cmp basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; + $echo The command "diff -a basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test basic-k(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 + diff -a basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-k(|)"; fi ;; 1) $echo "Test basic-k(|) failed: files basic-k.O and $srcdir/basic-k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-k(|) may have failed." 1>&2; - $echo The command "cmp basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; + $echo The command "diff -a basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test basic-k(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 + diff -a basic-k.O $srcdir/basic-k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed basic-k(<)"; fi ;; 1) $echo "Test basic-k(<) failed: files basic-k.O and $srcdir/basic-k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test basic-k(<) may have failed." 1>&2; - $echo The command "cmp basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; + $echo The command "diff -a basic-k.O $srcdir/basic-k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test opt-b(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 + diff -a opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-b(F)"; fi ;; 1) $echo "Test opt-b(F) failed: files opt-b.O and $srcdir/opt-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-b(F) may have failed." 1>&2; - $echo The command "cmp opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; + $echo The command "diff -a opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test opt-b(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 + diff -a opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-b(|)"; fi ;; 1) $echo "Test opt-b(|) failed: files opt-b.O and $srcdir/opt-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-b(|) may have failed." 1>&2; - $echo The command "cmp opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; + $echo The command "diff -a opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test opt-b(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 + diff -a opt-b.O $srcdir/opt-b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-b(<)"; fi ;; 1) $echo "Test opt-b(<) failed: files opt-b.O and $srcdir/opt-b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-b(<) may have failed." 1>&2; - $echo The command "cmp opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; + $echo The command "diff -a opt-b.O $srcdir/opt-b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test opt-s(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 + diff -a opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-s(F)"; fi ;; 1) $echo "Test opt-s(F) failed: files opt-s.O and $srcdir/opt-s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-s(F) may have failed." 1>&2; - $echo The command "cmp opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; + $echo The command "diff -a opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test opt-s(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 + diff -a opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-s(|)"; fi ;; 1) $echo "Test opt-s(|) failed: files opt-s.O and $srcdir/opt-s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-s(|) may have failed." 1>&2; - $echo The command "cmp opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; + $echo The command "diff -a opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test opt-s(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 + diff -a opt-s.O $srcdir/opt-s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-s(<)"; fi ;; 1) $echo "Test opt-s(<) failed: files opt-s.O and $srcdir/opt-s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-s(<) may have failed." 1>&2; - $echo The command "cmp opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; + $echo The command "diff -a opt-s.O $srcdir/opt-s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test opt-sb(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 + diff -a opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-sb(F)"; fi ;; 1) $echo "Test opt-sb(F) failed: files opt-sb.O and $srcdir/opt-sb.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-sb(F) may have failed." 1>&2; - $echo The command "cmp opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; + $echo The command "diff -a opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test opt-sb(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 + diff -a opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-sb(|)"; fi ;; 1) $echo "Test opt-sb(|) failed: files opt-sb.O and $srcdir/opt-sb.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-sb(|) may have failed." 1>&2; - $echo The command "cmp opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; + $echo The command "diff -a opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test opt-sb(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 + diff -a opt-sb.O $srcdir/opt-sb.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-sb(<)"; fi ;; 1) $echo "Test opt-sb(<) failed: files opt-sb.O and $srcdir/opt-sb.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-sb(<) may have failed." 1>&2; - $echo The command "cmp opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; + $echo The command "diff -a opt-sb.O $srcdir/opt-sb.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test opt-r(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 + diff -a opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r(F)"; fi ;; 1) $echo "Test opt-r(F) failed: files opt-r.O and $srcdir/opt-r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r(F) may have failed." 1>&2; - $echo The command "cmp opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; + $echo The command "diff -a opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test opt-r(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 + diff -a opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r(|)"; fi ;; 1) $echo "Test opt-r(|) failed: files opt-r.O and $srcdir/opt-r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r(|) may have failed." 1>&2; - $echo The command "cmp opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; + $echo The command "diff -a opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test opt-r(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 + diff -a opt-r.O $srcdir/opt-r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r(<)"; fi ;; 1) $echo "Test opt-r(<) failed: files opt-r.O and $srcdir/opt-r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r(<) may have failed." 1>&2; - $echo The command "cmp opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; + $echo The command "diff -a opt-r.O $srcdir/opt-r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test opt-r2(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 + diff -a opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r2(F)"; fi ;; 1) $echo "Test opt-r2(F) failed: files opt-r2.O and $srcdir/opt-r2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r2(F) may have failed." 1>&2; - $echo The command "cmp opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; + $echo The command "diff -a opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test opt-r2(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 + diff -a opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r2(|)"; fi ;; 1) $echo "Test opt-r2(|) failed: files opt-r2.O and $srcdir/opt-r2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r2(|) may have failed." 1>&2; - $echo The command "cmp opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; + $echo The command "diff -a opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test opt-r2(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 + diff -a opt-r2.O $srcdir/opt-r2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-r2(<)"; fi ;; 1) $echo "Test opt-r2(<) failed: files opt-r2.O and $srcdir/opt-r2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-r2(<) may have failed." 1>&2; - $echo The command "cmp opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; + $echo The command "diff -a opt-r2.O $srcdir/opt-r2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test opt-br(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 + diff -a opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br(F)"; fi ;; 1) $echo "Test opt-br(F) failed: files opt-br.O and $srcdir/opt-br.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br(F) may have failed." 1>&2; - $echo The command "cmp opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; + $echo The command "diff -a opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test opt-br(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 + diff -a opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br(|)"; fi ;; 1) $echo "Test opt-br(|) failed: files opt-br.O and $srcdir/opt-br.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br(|) may have failed." 1>&2; - $echo The command "cmp opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; + $echo The command "diff -a opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test opt-br(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 + diff -a opt-br.O $srcdir/opt-br.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br(<)"; fi ;; 1) $echo "Test opt-br(<) failed: files opt-br.O and $srcdir/opt-br.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br(<) may have failed." 1>&2; - $echo The command "cmp opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; + $echo The command "diff -a opt-br.O $srcdir/opt-br.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test opt-br2(F) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 + diff -a opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br2(F)"; fi ;; 1) $echo "Test opt-br2(F) failed: files opt-br2.O and $srcdir/opt-br2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br2(F) may have failed." 1>&2; - $echo The command "cmp opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; + $echo The command "diff -a opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test opt-br2(|) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 + diff -a opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br2(|)"; fi ;; 1) $echo "Test opt-br2(|) failed: files opt-br2.O and $srcdir/opt-br2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br2(|) may have failed." 1>&2; - $echo The command "cmp opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; + $echo The command "diff -a opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test opt-br2(<) failed: ../../src/tac return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 + diff -a opt-br2.O $srcdir/opt-br2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed opt-br2(<)"; fi ;; 1) $echo "Test opt-br2(<) failed: files opt-br2.O and $srcdir/opt-br2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test opt-br2(<) may have failed." 1>&2; - $echo The command "cmp opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; + $echo The command "diff -a opt-br2.O $srcdir/opt-br2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/tail/tail-tests Sun Apr 11 17:13:46 1999 +++ gnu/textutils-2.0/tests/tail/tail-tests Sun Oct 21 00:21:34 2001 @@ -24,13 +24,13 @@ $echo "Test obs-c1(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 + diff -a obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c1(F)"; fi ;; 1) $echo "Test obs-c1(F) failed: files obs-c1.O and $srcdir/obs-c1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c1(F) may have failed." 1>&2; - $echo The command "cmp obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; + $echo The command "diff -a obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test obs-c1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 + diff -a obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c1(|)"; fi ;; 1) $echo "Test obs-c1(|) failed: files obs-c1.O and $srcdir/obs-c1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c1(|) may have failed." 1>&2; - $echo The command "cmp obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; + $echo The command "diff -a obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test obs-c1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 + diff -a obs-c1.O $srcdir/obs-c1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c1(<)"; fi ;; 1) $echo "Test obs-c1(<) failed: files obs-c1.O and $srcdir/obs-c1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c1(<) may have failed." 1>&2; - $echo The command "cmp obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; + $echo The command "diff -a obs-c1.O $srcdir/obs-c1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test obs-c2(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 + diff -a obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c2(F)"; fi ;; 1) $echo "Test obs-c2(F) failed: files obs-c2.O and $srcdir/obs-c2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c2(F) may have failed." 1>&2; - $echo The command "cmp obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; + $echo The command "diff -a obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test obs-c2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 + diff -a obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c2(|)"; fi ;; 1) $echo "Test obs-c2(|) failed: files obs-c2.O and $srcdir/obs-c2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c2(|) may have failed." 1>&2; - $echo The command "cmp obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; + $echo The command "diff -a obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test obs-c2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 + diff -a obs-c2.O $srcdir/obs-c2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c2(<)"; fi ;; 1) $echo "Test obs-c2(<) failed: files obs-c2.O and $srcdir/obs-c2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c2(<) may have failed." 1>&2; - $echo The command "cmp obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; + $echo The command "diff -a obs-c2.O $srcdir/obs-c2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test obs-c3(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 + diff -a obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c3(F)"; fi ;; 1) $echo "Test obs-c3(F) failed: files obs-c3.O and $srcdir/obs-c3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c3(F) may have failed." 1>&2; - $echo The command "cmp obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; + $echo The command "diff -a obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test obs-c3(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 + diff -a obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c3(|)"; fi ;; 1) $echo "Test obs-c3(|) failed: files obs-c3.O and $srcdir/obs-c3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c3(|) may have failed." 1>&2; - $echo The command "cmp obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; + $echo The command "diff -a obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test obs-c3(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 + diff -a obs-c3.O $srcdir/obs-c3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c3(<)"; fi ;; 1) $echo "Test obs-c3(<) failed: files obs-c3.O and $srcdir/obs-c3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c3(<) may have failed." 1>&2; - $echo The command "cmp obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; + $echo The command "diff -a obs-c3.O $srcdir/obs-c3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test obs-c4(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 + diff -a obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c4(F)"; fi ;; 1) $echo "Test obs-c4(F) failed: files obs-c4.O and $srcdir/obs-c4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c4(F) may have failed." 1>&2; - $echo The command "cmp obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; + $echo The command "diff -a obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test obs-c4(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 + diff -a obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c4(|)"; fi ;; 1) $echo "Test obs-c4(|) failed: files obs-c4.O and $srcdir/obs-c4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c4(|) may have failed." 1>&2; - $echo The command "cmp obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; + $echo The command "diff -a obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test obs-c4(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 + diff -a obs-c4.O $srcdir/obs-c4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c4(<)"; fi ;; 1) $echo "Test obs-c4(<) failed: files obs-c4.O and $srcdir/obs-c4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c4(<) may have failed." 1>&2; - $echo The command "cmp obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; + $echo The command "diff -a obs-c4.O $srcdir/obs-c4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test obs-c5(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 + diff -a obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c5(F)"; fi ;; 1) $echo "Test obs-c5(F) failed: files obs-c5.O and $srcdir/obs-c5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c5(F) may have failed." 1>&2; - $echo The command "cmp obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; + $echo The command "diff -a obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test obs-c5(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 + diff -a obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c5(|)"; fi ;; 1) $echo "Test obs-c5(|) failed: files obs-c5.O and $srcdir/obs-c5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c5(|) may have failed." 1>&2; - $echo The command "cmp obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; + $echo The command "diff -a obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test obs-c5(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 + diff -a obs-c5.O $srcdir/obs-c5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-c5(<)"; fi ;; 1) $echo "Test obs-c5(<) failed: files obs-c5.O and $srcdir/obs-c5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-c5(<) may have failed." 1>&2; - $echo The command "cmp obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; + $echo The command "diff -a obs-c5.O $srcdir/obs-c5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test obs-l1(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 + diff -a obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l1(F)"; fi ;; 1) $echo "Test obs-l1(F) failed: files obs-l1.O and $srcdir/obs-l1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l1(F) may have failed." 1>&2; - $echo The command "cmp obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; + $echo The command "diff -a obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test obs-l1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 + diff -a obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l1(|)"; fi ;; 1) $echo "Test obs-l1(|) failed: files obs-l1.O and $srcdir/obs-l1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l1(|) may have failed." 1>&2; - $echo The command "cmp obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; + $echo The command "diff -a obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test obs-l1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 + diff -a obs-l1.O $srcdir/obs-l1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l1(<)"; fi ;; 1) $echo "Test obs-l1(<) failed: files obs-l1.O and $srcdir/obs-l1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l1(<) may have failed." 1>&2; - $echo The command "cmp obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; + $echo The command "diff -a obs-l1.O $srcdir/obs-l1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test obs-l2(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 + diff -a obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l2(F)"; fi ;; 1) $echo "Test obs-l2(F) failed: files obs-l2.O and $srcdir/obs-l2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l2(F) may have failed." 1>&2; - $echo The command "cmp obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; + $echo The command "diff -a obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test obs-l2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 + diff -a obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l2(|)"; fi ;; 1) $echo "Test obs-l2(|) failed: files obs-l2.O and $srcdir/obs-l2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l2(|) may have failed." 1>&2; - $echo The command "cmp obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; + $echo The command "diff -a obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test obs-l2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 + diff -a obs-l2.O $srcdir/obs-l2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l2(<)"; fi ;; 1) $echo "Test obs-l2(<) failed: files obs-l2.O and $srcdir/obs-l2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l2(<) may have failed." 1>&2; - $echo The command "cmp obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; + $echo The command "diff -a obs-l2.O $srcdir/obs-l2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test obs-l3(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 + diff -a obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l3(F)"; fi ;; 1) $echo "Test obs-l3(F) failed: files obs-l3.O and $srcdir/obs-l3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l3(F) may have failed." 1>&2; - $echo The command "cmp obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; + $echo The command "diff -a obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test obs-l3(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 + diff -a obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l3(|)"; fi ;; 1) $echo "Test obs-l3(|) failed: files obs-l3.O and $srcdir/obs-l3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l3(|) may have failed." 1>&2; - $echo The command "cmp obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; + $echo The command "diff -a obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test obs-l3(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 + diff -a obs-l3.O $srcdir/obs-l3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l3(<)"; fi ;; 1) $echo "Test obs-l3(<) failed: files obs-l3.O and $srcdir/obs-l3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l3(<) may have failed." 1>&2; - $echo The command "cmp obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; + $echo The command "diff -a obs-l3.O $srcdir/obs-l3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test obs-l4(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 + diff -a obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l4(F)"; fi ;; 1) $echo "Test obs-l4(F) failed: files obs-l4.O and $srcdir/obs-l4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l4(F) may have failed." 1>&2; - $echo The command "cmp obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; + $echo The command "diff -a obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test obs-l4(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 + diff -a obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l4(|)"; fi ;; 1) $echo "Test obs-l4(|) failed: files obs-l4.O and $srcdir/obs-l4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l4(|) may have failed." 1>&2; - $echo The command "cmp obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; + $echo The command "diff -a obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test obs-l4(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 + diff -a obs-l4.O $srcdir/obs-l4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l4(<)"; fi ;; 1) $echo "Test obs-l4(<) failed: files obs-l4.O and $srcdir/obs-l4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l4(<) may have failed." 1>&2; - $echo The command "cmp obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; + $echo The command "diff -a obs-l4.O $srcdir/obs-l4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test obs-l5(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 + diff -a obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l5(F)"; fi ;; 1) $echo "Test obs-l5(F) failed: files obs-l5.O and $srcdir/obs-l5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l5(F) may have failed." 1>&2; - $echo The command "cmp obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; + $echo The command "diff -a obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test obs-l5(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 + diff -a obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l5(|)"; fi ;; 1) $echo "Test obs-l5(|) failed: files obs-l5.O and $srcdir/obs-l5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l5(|) may have failed." 1>&2; - $echo The command "cmp obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; + $echo The command "diff -a obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test obs-l5(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 + diff -a obs-l5.O $srcdir/obs-l5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l5(<)"; fi ;; 1) $echo "Test obs-l5(<) failed: files obs-l5.O and $srcdir/obs-l5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l5(<) may have failed." 1>&2; - $echo The command "cmp obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; + $echo The command "diff -a obs-l5.O $srcdir/obs-l5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test obs-1(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 + diff -a obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-1(F)"; fi ;; 1) $echo "Test obs-1(F) failed: files obs-1.O and $srcdir/obs-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-1(F) may have failed." 1>&2; - $echo The command "cmp obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; + $echo The command "diff -a obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test obs-1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 + diff -a obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-1(|)"; fi ;; 1) $echo "Test obs-1(|) failed: files obs-1.O and $srcdir/obs-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-1(|) may have failed." 1>&2; - $echo The command "cmp obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; + $echo The command "diff -a obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test obs-1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 + diff -a obs-1.O $srcdir/obs-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-1(<)"; fi ;; 1) $echo "Test obs-1(<) failed: files obs-1.O and $srcdir/obs-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-1(<) may have failed." 1>&2; - $echo The command "cmp obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; + $echo The command "diff -a obs-1.O $srcdir/obs-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test obs-2(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 + diff -a obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-2(F)"; fi ;; 1) $echo "Test obs-2(F) failed: files obs-2.O and $srcdir/obs-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-2(F) may have failed." 1>&2; - $echo The command "cmp obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; + $echo The command "diff -a obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test obs-2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 + diff -a obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-2(|)"; fi ;; 1) $echo "Test obs-2(|) failed: files obs-2.O and $srcdir/obs-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-2(|) may have failed." 1>&2; - $echo The command "cmp obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; + $echo The command "diff -a obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test obs-2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 + diff -a obs-2.O $srcdir/obs-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-2(<)"; fi ;; 1) $echo "Test obs-2(<) failed: files obs-2.O and $srcdir/obs-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-2(<) may have failed." 1>&2; - $echo The command "cmp obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; + $echo The command "diff -a obs-2.O $srcdir/obs-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test obs-3(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 + diff -a obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-3(F)"; fi ;; 1) $echo "Test obs-3(F) failed: files obs-3.O and $srcdir/obs-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-3(F) may have failed." 1>&2; - $echo The command "cmp obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; + $echo The command "diff -a obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test obs-3(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 + diff -a obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-3(|)"; fi ;; 1) $echo "Test obs-3(|) failed: files obs-3.O and $srcdir/obs-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-3(|) may have failed." 1>&2; - $echo The command "cmp obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; + $echo The command "diff -a obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test obs-3(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 + diff -a obs-3.O $srcdir/obs-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-3(<)"; fi ;; 1) $echo "Test obs-3(<) failed: files obs-3.O and $srcdir/obs-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-3(<) may have failed." 1>&2; - $echo The command "cmp obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; + $echo The command "diff -a obs-3.O $srcdir/obs-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test obs-4(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 + diff -a obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-4(F)"; fi ;; 1) $echo "Test obs-4(F) failed: files obs-4.O and $srcdir/obs-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-4(F) may have failed." 1>&2; - $echo The command "cmp obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; + $echo The command "diff -a obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test obs-4(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 + diff -a obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-4(|)"; fi ;; 1) $echo "Test obs-4(|) failed: files obs-4.O and $srcdir/obs-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-4(|) may have failed." 1>&2; - $echo The command "cmp obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; + $echo The command "diff -a obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test obs-4(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 + diff -a obs-4.O $srcdir/obs-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-4(<)"; fi ;; 1) $echo "Test obs-4(<) failed: files obs-4.O and $srcdir/obs-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-4(<) may have failed." 1>&2; - $echo The command "cmp obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; + $echo The command "diff -a obs-4.O $srcdir/obs-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test obs-5(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 + diff -a obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-5(F)"; fi ;; 1) $echo "Test obs-5(F) failed: files obs-5.O and $srcdir/obs-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-5(F) may have failed." 1>&2; - $echo The command "cmp obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; + $echo The command "diff -a obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test obs-5(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 + diff -a obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-5(|)"; fi ;; 1) $echo "Test obs-5(|) failed: files obs-5.O and $srcdir/obs-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-5(|) may have failed." 1>&2; - $echo The command "cmp obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; + $echo The command "diff -a obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test obs-5(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 + diff -a obs-5.O $srcdir/obs-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-5(<)"; fi ;; 1) $echo "Test obs-5(<) failed: files obs-5.O and $srcdir/obs-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-5(<) may have failed." 1>&2; - $echo The command "cmp obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; + $echo The command "diff -a obs-5.O $srcdir/obs-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test obsx-1(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 + diff -a obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-1(F)"; fi ;; 1) $echo "Test obsx-1(F) failed: files obsx-1.O and $srcdir/obsx-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-1(F) may have failed." 1>&2; - $echo The command "cmp obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; + $echo The command "diff -a obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test obsx-1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 + diff -a obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-1(|)"; fi ;; 1) $echo "Test obsx-1(|) failed: files obsx-1.O and $srcdir/obsx-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-1(|) may have failed." 1>&2; - $echo The command "cmp obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; + $echo The command "diff -a obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test obsx-1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 + diff -a obsx-1.O $srcdir/obsx-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-1(<)"; fi ;; 1) $echo "Test obsx-1(<) failed: files obsx-1.O and $srcdir/obsx-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-1(<) may have failed." 1>&2; - $echo The command "cmp obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; + $echo The command "diff -a obsx-1.O $srcdir/obsx-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test obsx-2(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 + diff -a obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-2(F)"; fi ;; 1) $echo "Test obsx-2(F) failed: files obsx-2.O and $srcdir/obsx-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-2(F) may have failed." 1>&2; - $echo The command "cmp obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; + $echo The command "diff -a obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test obsx-2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 + diff -a obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-2(|)"; fi ;; 1) $echo "Test obsx-2(|) failed: files obsx-2.O and $srcdir/obsx-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-2(|) may have failed." 1>&2; - $echo The command "cmp obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; + $echo The command "diff -a obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test obsx-2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 + diff -a obsx-2.O $srcdir/obsx-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obsx-2(<)"; fi ;; 1) $echo "Test obsx-2(<) failed: files obsx-2.O and $srcdir/obsx-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obsx-2(<) may have failed." 1>&2; - $echo The command "cmp obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; + $echo The command "diff -a obsx-2.O $srcdir/obsx-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test obs-l(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 + diff -a obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l(F)"; fi ;; 1) $echo "Test obs-l(F) failed: files obs-l.O and $srcdir/obs-l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l(F) may have failed." 1>&2; - $echo The command "cmp obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; + $echo The command "diff -a obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test obs-l(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 + diff -a obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l(|)"; fi ;; 1) $echo "Test obs-l(|) failed: files obs-l.O and $srcdir/obs-l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l(|) may have failed." 1>&2; - $echo The command "cmp obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; + $echo The command "diff -a obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test obs-l(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 + diff -a obs-l.O $srcdir/obs-l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed obs-l(<)"; fi ;; 1) $echo "Test obs-l(<) failed: files obs-l.O and $srcdir/obs-l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test obs-l(<) may have failed." 1>&2; - $echo The command "cmp obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; + $echo The command "diff -a obs-l.O $srcdir/obs-l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test err-1(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-1.O $srcdir/err-1.X > /dev/null 2>&1 + diff -a err-1.O $srcdir/err-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-1(F)"; fi ;; 1) $echo "Test err-1(F) failed: files err-1.O and $srcdir/err-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-1(F) may have failed." 1>&2; - $echo The command "cmp err-1.O $srcdir/err-1.X" failed. 1>&2 ; + $echo The command "diff -a err-1.O $srcdir/err-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test err-1(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-1.O $srcdir/err-1.X > /dev/null 2>&1 + diff -a err-1.O $srcdir/err-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-1(|)"; fi ;; 1) $echo "Test err-1(|) failed: files err-1.O and $srcdir/err-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-1(|) may have failed." 1>&2; - $echo The command "cmp err-1.O $srcdir/err-1.X" failed. 1>&2 ; + $echo The command "diff -a err-1.O $srcdir/err-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test err-1(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-1.O $srcdir/err-1.X > /dev/null 2>&1 + diff -a err-1.O $srcdir/err-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-1(<)"; fi ;; 1) $echo "Test err-1(<) failed: files err-1.O and $srcdir/err-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-1(<) may have failed." 1>&2; - $echo The command "cmp err-1.O $srcdir/err-1.X" failed. 1>&2 ; + $echo The command "diff -a err-1.O $srcdir/err-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test err-2(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-2.O $srcdir/err-2.X > /dev/null 2>&1 + diff -a err-2.O $srcdir/err-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-2(F)"; fi ;; 1) $echo "Test err-2(F) failed: files err-2.O and $srcdir/err-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-2(F) may have failed." 1>&2; - $echo The command "cmp err-2.O $srcdir/err-2.X" failed. 1>&2 ; + $echo The command "diff -a err-2.O $srcdir/err-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test err-2(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-2.O $srcdir/err-2.X > /dev/null 2>&1 + diff -a err-2.O $srcdir/err-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-2(|)"; fi ;; 1) $echo "Test err-2(|) failed: files err-2.O and $srcdir/err-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-2(|) may have failed." 1>&2; - $echo The command "cmp err-2.O $srcdir/err-2.X" failed. 1>&2 ; + $echo The command "diff -a err-2.O $srcdir/err-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test err-2(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-2.O $srcdir/err-2.X > /dev/null 2>&1 + diff -a err-2.O $srcdir/err-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-2(<)"; fi ;; 1) $echo "Test err-2(<) failed: files err-2.O and $srcdir/err-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-2(<) may have failed." 1>&2; - $echo The command "cmp err-2.O $srcdir/err-2.X" failed. 1>&2 ; + $echo The command "diff -a err-2.O $srcdir/err-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test err-3(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-3.O $srcdir/err-3.X > /dev/null 2>&1 + diff -a err-3.O $srcdir/err-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-3(F)"; fi ;; 1) $echo "Test err-3(F) failed: files err-3.O and $srcdir/err-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-3(F) may have failed." 1>&2; - $echo The command "cmp err-3.O $srcdir/err-3.X" failed. 1>&2 ; + $echo The command "diff -a err-3.O $srcdir/err-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test err-3(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-3.O $srcdir/err-3.X > /dev/null 2>&1 + diff -a err-3.O $srcdir/err-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-3(|)"; fi ;; 1) $echo "Test err-3(|) failed: files err-3.O and $srcdir/err-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-3(|) may have failed." 1>&2; - $echo The command "cmp err-3.O $srcdir/err-3.X" failed. 1>&2 ; + $echo The command "diff -a err-3.O $srcdir/err-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test err-3(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-3.O $srcdir/err-3.X > /dev/null 2>&1 + diff -a err-3.O $srcdir/err-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-3(<)"; fi ;; 1) $echo "Test err-3(<) failed: files err-3.O and $srcdir/err-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-3(<) may have failed." 1>&2; - $echo The command "cmp err-3.O $srcdir/err-3.X" failed. 1>&2 ; + $echo The command "diff -a err-3.O $srcdir/err-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test err-4(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-4.O $srcdir/err-4.X > /dev/null 2>&1 + diff -a err-4.O $srcdir/err-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-4(F)"; fi ;; 1) $echo "Test err-4(F) failed: files err-4.O and $srcdir/err-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-4(F) may have failed." 1>&2; - $echo The command "cmp err-4.O $srcdir/err-4.X" failed. 1>&2 ; + $echo The command "diff -a err-4.O $srcdir/err-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test err-4(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-4.O $srcdir/err-4.X > /dev/null 2>&1 + diff -a err-4.O $srcdir/err-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-4(|)"; fi ;; 1) $echo "Test err-4(|) failed: files err-4.O and $srcdir/err-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-4(|) may have failed." 1>&2; - $echo The command "cmp err-4.O $srcdir/err-4.X" failed. 1>&2 ; + $echo The command "diff -a err-4.O $srcdir/err-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test err-4(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-4.O $srcdir/err-4.X > /dev/null 2>&1 + diff -a err-4.O $srcdir/err-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-4(<)"; fi ;; 1) $echo "Test err-4(<) failed: files err-4.O and $srcdir/err-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-4(<) may have failed." 1>&2; - $echo The command "cmp err-4.O $srcdir/err-4.X" failed. 1>&2 ; + $echo The command "diff -a err-4.O $srcdir/err-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test err-5(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-5.O $srcdir/err-5.X > /dev/null 2>&1 + diff -a err-5.O $srcdir/err-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-5(F)"; fi ;; 1) $echo "Test err-5(F) failed: files err-5.O and $srcdir/err-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-5(F) may have failed." 1>&2; - $echo The command "cmp err-5.O $srcdir/err-5.X" failed. 1>&2 ; + $echo The command "diff -a err-5.O $srcdir/err-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test err-5(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-5.O $srcdir/err-5.X > /dev/null 2>&1 + diff -a err-5.O $srcdir/err-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-5(|)"; fi ;; 1) $echo "Test err-5(|) failed: files err-5.O and $srcdir/err-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-5(|) may have failed." 1>&2; - $echo The command "cmp err-5.O $srcdir/err-5.X" failed. 1>&2 ; + $echo The command "diff -a err-5.O $srcdir/err-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test err-5(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-5.O $srcdir/err-5.X > /dev/null 2>&1 + diff -a err-5.O $srcdir/err-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-5(<)"; fi ;; 1) $echo "Test err-5(<) failed: files err-5.O and $srcdir/err-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-5(<) may have failed." 1>&2; - $echo The command "cmp err-5.O $srcdir/err-5.X" failed. 1>&2 ; + $echo The command "diff -a err-5.O $srcdir/err-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test err-6(F) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-6.O $srcdir/err-6.X > /dev/null 2>&1 + diff -a err-6.O $srcdir/err-6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-6(F)"; fi ;; 1) $echo "Test err-6(F) failed: files err-6.O and $srcdir/err-6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-6(F) may have failed." 1>&2; - $echo The command "cmp err-6.O $srcdir/err-6.X" failed. 1>&2 ; + $echo The command "diff -a err-6.O $srcdir/err-6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test err-6(|) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-6.O $srcdir/err-6.X > /dev/null 2>&1 + diff -a err-6.O $srcdir/err-6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-6(|)"; fi ;; 1) $echo "Test err-6(|) failed: files err-6.O and $srcdir/err-6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-6(|) may have failed." 1>&2; - $echo The command "cmp err-6.O $srcdir/err-6.X" failed. 1>&2 ; + $echo The command "diff -a err-6.O $srcdir/err-6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test err-6(<) failed: ../../src/tail return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp err-6.O $srcdir/err-6.X > /dev/null 2>&1 + diff -a err-6.O $srcdir/err-6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed err-6(<)"; fi ;; 1) $echo "Test err-6(<) failed: files err-6.O and $srcdir/err-6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test err-6(<) may have failed." 1>&2; - $echo The command "cmp err-6.O $srcdir/err-6.X" failed. 1>&2 ; + $echo The command "diff -a err-6.O $srcdir/err-6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test minus-1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp minus-1.O $srcdir/minus-1.X > /dev/null 2>&1 + diff -a minus-1.O $srcdir/minus-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed minus-1(|)"; fi ;; 1) $echo "Test minus-1(|) failed: files minus-1.O and $srcdir/minus-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test minus-1(|) may have failed." 1>&2; - $echo The command "cmp minus-1.O $srcdir/minus-1.X" failed. 1>&2 ; + $echo The command "diff -a minus-1.O $srcdir/minus-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test minus-1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp minus-1.O $srcdir/minus-1.X > /dev/null 2>&1 + diff -a minus-1.O $srcdir/minus-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed minus-1(<)"; fi ;; 1) $echo "Test minus-1(<) failed: files minus-1.O and $srcdir/minus-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test minus-1(<) may have failed." 1>&2; - $echo The command "cmp minus-1.O $srcdir/minus-1.X" failed. 1>&2 ; + $echo The command "diff -a minus-1.O $srcdir/minus-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test minus-2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp minus-2.O $srcdir/minus-2.X > /dev/null 2>&1 + diff -a minus-2.O $srcdir/minus-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed minus-2(|)"; fi ;; 1) $echo "Test minus-2(|) failed: files minus-2.O and $srcdir/minus-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test minus-2(|) may have failed." 1>&2; - $echo The command "cmp minus-2.O $srcdir/minus-2.X" failed. 1>&2 ; + $echo The command "diff -a minus-2.O $srcdir/minus-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test minus-2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp minus-2.O $srcdir/minus-2.X > /dev/null 2>&1 + diff -a minus-2.O $srcdir/minus-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed minus-2(<)"; fi ;; 1) $echo "Test minus-2(<) failed: files minus-2.O and $srcdir/minus-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test minus-2(<) may have failed." 1>&2; - $echo The command "cmp minus-2.O $srcdir/minus-2.X" failed. 1>&2 ; + $echo The command "diff -a minus-2.O $srcdir/minus-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test n-1(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-1.O $srcdir/n-1.X > /dev/null 2>&1 + diff -a n-1.O $srcdir/n-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-1(F)"; fi ;; 1) $echo "Test n-1(F) failed: files n-1.O and $srcdir/n-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-1(F) may have failed." 1>&2; - $echo The command "cmp n-1.O $srcdir/n-1.X" failed. 1>&2 ; + $echo The command "diff -a n-1.O $srcdir/n-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test n-1(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-1.O $srcdir/n-1.X > /dev/null 2>&1 + diff -a n-1.O $srcdir/n-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-1(|)"; fi ;; 1) $echo "Test n-1(|) failed: files n-1.O and $srcdir/n-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-1(|) may have failed." 1>&2; - $echo The command "cmp n-1.O $srcdir/n-1.X" failed. 1>&2 ; + $echo The command "diff -a n-1.O $srcdir/n-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test n-1(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-1.O $srcdir/n-1.X > /dev/null 2>&1 + diff -a n-1.O $srcdir/n-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-1(<)"; fi ;; 1) $echo "Test n-1(<) failed: files n-1.O and $srcdir/n-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-1(<) may have failed." 1>&2; - $echo The command "cmp n-1.O $srcdir/n-1.X" failed. 1>&2 ; + $echo The command "diff -a n-1.O $srcdir/n-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test n-2(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-2.O $srcdir/n-2.X > /dev/null 2>&1 + diff -a n-2.O $srcdir/n-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-2(F)"; fi ;; 1) $echo "Test n-2(F) failed: files n-2.O and $srcdir/n-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-2(F) may have failed." 1>&2; - $echo The command "cmp n-2.O $srcdir/n-2.X" failed. 1>&2 ; + $echo The command "diff -a n-2.O $srcdir/n-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test n-2(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-2.O $srcdir/n-2.X > /dev/null 2>&1 + diff -a n-2.O $srcdir/n-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-2(|)"; fi ;; 1) $echo "Test n-2(|) failed: files n-2.O and $srcdir/n-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-2(|) may have failed." 1>&2; - $echo The command "cmp n-2.O $srcdir/n-2.X" failed. 1>&2 ; + $echo The command "diff -a n-2.O $srcdir/n-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test n-2(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-2.O $srcdir/n-2.X > /dev/null 2>&1 + diff -a n-2.O $srcdir/n-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-2(<)"; fi ;; 1) $echo "Test n-2(<) failed: files n-2.O and $srcdir/n-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-2(<) may have failed." 1>&2; - $echo The command "cmp n-2.O $srcdir/n-2.X" failed. 1>&2 ; + $echo The command "diff -a n-2.O $srcdir/n-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test n-3(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-3.O $srcdir/n-3.X > /dev/null 2>&1 + diff -a n-3.O $srcdir/n-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-3(F)"; fi ;; 1) $echo "Test n-3(F) failed: files n-3.O and $srcdir/n-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-3(F) may have failed." 1>&2; - $echo The command "cmp n-3.O $srcdir/n-3.X" failed. 1>&2 ; + $echo The command "diff -a n-3.O $srcdir/n-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test n-3(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-3.O $srcdir/n-3.X > /dev/null 2>&1 + diff -a n-3.O $srcdir/n-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-3(|)"; fi ;; 1) $echo "Test n-3(|) failed: files n-3.O and $srcdir/n-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-3(|) may have failed." 1>&2; - $echo The command "cmp n-3.O $srcdir/n-3.X" failed. 1>&2 ; + $echo The command "diff -a n-3.O $srcdir/n-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test n-3(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-3.O $srcdir/n-3.X > /dev/null 2>&1 + diff -a n-3.O $srcdir/n-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-3(<)"; fi ;; 1) $echo "Test n-3(<) failed: files n-3.O and $srcdir/n-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-3(<) may have failed." 1>&2; - $echo The command "cmp n-3.O $srcdir/n-3.X" failed. 1>&2 ; + $echo The command "diff -a n-3.O $srcdir/n-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test n-4(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4.O $srcdir/n-4.X > /dev/null 2>&1 + diff -a n-4.O $srcdir/n-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4(F)"; fi ;; 1) $echo "Test n-4(F) failed: files n-4.O and $srcdir/n-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4(F) may have failed." 1>&2; - $echo The command "cmp n-4.O $srcdir/n-4.X" failed. 1>&2 ; + $echo The command "diff -a n-4.O $srcdir/n-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test n-4(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4.O $srcdir/n-4.X > /dev/null 2>&1 + diff -a n-4.O $srcdir/n-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4(|)"; fi ;; 1) $echo "Test n-4(|) failed: files n-4.O and $srcdir/n-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4(|) may have failed." 1>&2; - $echo The command "cmp n-4.O $srcdir/n-4.X" failed. 1>&2 ; + $echo The command "diff -a n-4.O $srcdir/n-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test n-4(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4.O $srcdir/n-4.X > /dev/null 2>&1 + diff -a n-4.O $srcdir/n-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4(<)"; fi ;; 1) $echo "Test n-4(<) failed: files n-4.O and $srcdir/n-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4(<) may have failed." 1>&2; - $echo The command "cmp n-4.O $srcdir/n-4.X" failed. 1>&2 ; + $echo The command "diff -a n-4.O $srcdir/n-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test n-4a(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 + diff -a n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4a(F)"; fi ;; 1) $echo "Test n-4a(F) failed: files n-4a.O and $srcdir/n-4a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4a(F) may have failed." 1>&2; - $echo The command "cmp n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; + $echo The command "diff -a n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test n-4a(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 + diff -a n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4a(|)"; fi ;; 1) $echo "Test n-4a(|) failed: files n-4a.O and $srcdir/n-4a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4a(|) may have failed." 1>&2; - $echo The command "cmp n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; + $echo The command "diff -a n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1554,13 +1554,13 @@ $echo "Test n-4a(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 + diff -a n-4a.O $srcdir/n-4a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-4a(<)"; fi ;; 1) $echo "Test n-4a(<) failed: files n-4a.O and $srcdir/n-4a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-4a(<) may have failed." 1>&2; - $echo The command "cmp n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; + $echo The command "diff -a n-4a.O $srcdir/n-4a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1571,13 +1571,13 @@ $echo "Test n-5(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5.O $srcdir/n-5.X > /dev/null 2>&1 + diff -a n-5.O $srcdir/n-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5(F)"; fi ;; 1) $echo "Test n-5(F) failed: files n-5.O and $srcdir/n-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5(F) may have failed." 1>&2; - $echo The command "cmp n-5.O $srcdir/n-5.X" failed. 1>&2 ; + $echo The command "diff -a n-5.O $srcdir/n-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1588,13 +1588,13 @@ $echo "Test n-5(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5.O $srcdir/n-5.X > /dev/null 2>&1 + diff -a n-5.O $srcdir/n-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5(|)"; fi ;; 1) $echo "Test n-5(|) failed: files n-5.O and $srcdir/n-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5(|) may have failed." 1>&2; - $echo The command "cmp n-5.O $srcdir/n-5.X" failed. 1>&2 ; + $echo The command "diff -a n-5.O $srcdir/n-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1605,13 +1605,13 @@ $echo "Test n-5(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5.O $srcdir/n-5.X > /dev/null 2>&1 + diff -a n-5.O $srcdir/n-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5(<)"; fi ;; 1) $echo "Test n-5(<) failed: files n-5.O and $srcdir/n-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5(<) may have failed." 1>&2; - $echo The command "cmp n-5.O $srcdir/n-5.X" failed. 1>&2 ; + $echo The command "diff -a n-5.O $srcdir/n-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1622,13 +1622,13 @@ $echo "Test n-5a(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 + diff -a n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5a(F)"; fi ;; 1) $echo "Test n-5a(F) failed: files n-5a.O and $srcdir/n-5a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5a(F) may have failed." 1>&2; - $echo The command "cmp n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; + $echo The command "diff -a n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1639,13 +1639,13 @@ $echo "Test n-5a(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 + diff -a n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5a(|)"; fi ;; 1) $echo "Test n-5a(|) failed: files n-5a.O and $srcdir/n-5a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5a(|) may have failed." 1>&2; - $echo The command "cmp n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; + $echo The command "diff -a n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1656,13 +1656,13 @@ $echo "Test n-5a(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 + diff -a n-5a.O $srcdir/n-5a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5a(<)"; fi ;; 1) $echo "Test n-5a(<) failed: files n-5a.O and $srcdir/n-5a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5a(<) may have failed." 1>&2; - $echo The command "cmp n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; + $echo The command "diff -a n-5a.O $srcdir/n-5a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1673,13 +1673,13 @@ $echo "Test n-5b(F) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 + diff -a n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5b(F)"; fi ;; 1) $echo "Test n-5b(F) failed: files n-5b.O and $srcdir/n-5b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5b(F) may have failed." 1>&2; - $echo The command "cmp n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; + $echo The command "diff -a n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1690,13 +1690,13 @@ $echo "Test n-5b(|) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 + diff -a n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5b(|)"; fi ;; 1) $echo "Test n-5b(|) failed: files n-5b.O and $srcdir/n-5b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5b(|) may have failed." 1>&2; - $echo The command "cmp n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; + $echo The command "diff -a n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1707,13 +1707,13 @@ $echo "Test n-5b(<) failed: ../../src/tail return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 + diff -a n-5b.O $srcdir/n-5b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n-5b(<)"; fi ;; 1) $echo "Test n-5b(<) failed: files n-5b.O and $srcdir/n-5b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n-5b(<) may have failed." 1>&2; - $echo The command "cmp n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; + $echo The command "diff -a n-5b.O $srcdir/n-5b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/tr/tr-tests Fri Jan 29 13:56:18 1999 +++ gnu/textutils-2.0/tests/tr/tr-tests Sun Oct 21 00:23:24 2001 @@ -24,13 +24,13 @@ $echo "Test 1(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(|)"; fi ;; 1) $echo "Test 1(|) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(|) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test 1(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(<)"; fi ;; 1) $echo "Test 1(<) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(<) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test 2(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(|)"; fi ;; 1) $echo "Test 2(|) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(|) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test 2(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(<)"; fi ;; 1) $echo "Test 2(<) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(<) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test 3(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(|)"; fi ;; 1) $echo "Test 3(|) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(|) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test 3(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(<)"; fi ;; 1) $echo "Test 3(<) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(<) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test 4(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(|)"; fi ;; 1) $echo "Test 4(|) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(|) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test 4(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(<)"; fi ;; 1) $echo "Test 4(<) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(<) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test 5(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(|)"; fi ;; 1) $echo "Test 5(|) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(|) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test 5(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(<)"; fi ;; 1) $echo "Test 5(<) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(<) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test 6(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(|)"; fi ;; 1) $echo "Test 6(|) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(|) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test 6(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(<)"; fi ;; 1) $echo "Test 6(<) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(<) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test 7(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(|)"; fi ;; 1) $echo "Test 7(|) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(|) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test 7(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(<)"; fi ;; 1) $echo "Test 7(<) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(<) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test 8(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(|)"; fi ;; 1) $echo "Test 8(|) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(|) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 8(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(<)"; fi ;; 1) $echo "Test 8(<) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(<) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 9(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(|)"; fi ;; 1) $echo "Test 9(|) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(|) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 9(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(<)"; fi ;; 1) $echo "Test 9(<) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(<) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test a(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a.O $srcdir/a.X > /dev/null 2>&1 + diff -a a.O $srcdir/a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a(|)"; fi ;; 1) $echo "Test a(|) failed: files a.O and $srcdir/a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a(|) may have failed." 1>&2; - $echo The command "cmp a.O $srcdir/a.X" failed. 1>&2 ; + $echo The command "diff -a a.O $srcdir/a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test a(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a.O $srcdir/a.X > /dev/null 2>&1 + diff -a a.O $srcdir/a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a(<)"; fi ;; 1) $echo "Test a(<) failed: files a.O and $srcdir/a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a(<) may have failed." 1>&2; - $echo The command "cmp a.O $srcdir/a.X" failed. 1>&2 ; + $echo The command "diff -a a.O $srcdir/a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test b(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b.O $srcdir/b.X > /dev/null 2>&1 + diff -a b.O $srcdir/b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b(|)"; fi ;; 1) $echo "Test b(|) failed: files b.O and $srcdir/b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b(|) may have failed." 1>&2; - $echo The command "cmp b.O $srcdir/b.X" failed. 1>&2 ; + $echo The command "diff -a b.O $srcdir/b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test b(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b.O $srcdir/b.X > /dev/null 2>&1 + diff -a b.O $srcdir/b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b(<)"; fi ;; 1) $echo "Test b(<) failed: files b.O and $srcdir/b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b(<) may have failed." 1>&2; - $echo The command "cmp b.O $srcdir/b.X" failed. 1>&2 ; + $echo The command "diff -a b.O $srcdir/b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test c(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c.O $srcdir/c.X > /dev/null 2>&1 + diff -a c.O $srcdir/c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c(|)"; fi ;; 1) $echo "Test c(|) failed: files c.O and $srcdir/c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c(|) may have failed." 1>&2; - $echo The command "cmp c.O $srcdir/c.X" failed. 1>&2 ; + $echo The command "diff -a c.O $srcdir/c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test c(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c.O $srcdir/c.X > /dev/null 2>&1 + diff -a c.O $srcdir/c.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c(<)"; fi ;; 1) $echo "Test c(<) failed: files c.O and $srcdir/c.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c(<) may have failed." 1>&2; - $echo The command "cmp c.O $srcdir/c.X" failed. 1>&2 ; + $echo The command "diff -a c.O $srcdir/c.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test d(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp d.O $srcdir/d.X > /dev/null 2>&1 + diff -a d.O $srcdir/d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed d(|)"; fi ;; 1) $echo "Test d(|) failed: files d.O and $srcdir/d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test d(|) may have failed." 1>&2; - $echo The command "cmp d.O $srcdir/d.X" failed. 1>&2 ; + $echo The command "diff -a d.O $srcdir/d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test d(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp d.O $srcdir/d.X > /dev/null 2>&1 + diff -a d.O $srcdir/d.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed d(<)"; fi ;; 1) $echo "Test d(<) failed: files d.O and $srcdir/d.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test d(<) may have failed." 1>&2; - $echo The command "cmp d.O $srcdir/d.X" failed. 1>&2 ; + $echo The command "diff -a d.O $srcdir/d.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test e(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp e.O $srcdir/e.X > /dev/null 2>&1 + diff -a e.O $srcdir/e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed e(|)"; fi ;; 1) $echo "Test e(|) failed: files e.O and $srcdir/e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test e(|) may have failed." 1>&2; - $echo The command "cmp e.O $srcdir/e.X" failed. 1>&2 ; + $echo The command "diff -a e.O $srcdir/e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test e(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp e.O $srcdir/e.X > /dev/null 2>&1 + diff -a e.O $srcdir/e.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed e(<)"; fi ;; 1) $echo "Test e(<) failed: files e.O and $srcdir/e.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test e(<) may have failed." 1>&2; - $echo The command "cmp e.O $srcdir/e.X" failed. 1>&2 ; + $echo The command "diff -a e.O $srcdir/e.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test f(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp f.O $srcdir/f.X > /dev/null 2>&1 + diff -a f.O $srcdir/f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed f(|)"; fi ;; 1) $echo "Test f(|) failed: files f.O and $srcdir/f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test f(|) may have failed." 1>&2; - $echo The command "cmp f.O $srcdir/f.X" failed. 1>&2 ; + $echo The command "diff -a f.O $srcdir/f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test f(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp f.O $srcdir/f.X > /dev/null 2>&1 + diff -a f.O $srcdir/f.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed f(<)"; fi ;; 1) $echo "Test f(<) failed: files f.O and $srcdir/f.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test f(<) may have failed." 1>&2; - $echo The command "cmp f.O $srcdir/f.X" failed. 1>&2 ; + $echo The command "diff -a f.O $srcdir/f.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test g(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp g.O $srcdir/g.X > /dev/null 2>&1 + diff -a g.O $srcdir/g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed g(|)"; fi ;; 1) $echo "Test g(|) failed: files g.O and $srcdir/g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test g(|) may have failed." 1>&2; - $echo The command "cmp g.O $srcdir/g.X" failed. 1>&2 ; + $echo The command "diff -a g.O $srcdir/g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test g(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp g.O $srcdir/g.X > /dev/null 2>&1 + diff -a g.O $srcdir/g.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed g(<)"; fi ;; 1) $echo "Test g(<) failed: files g.O and $srcdir/g.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test g(<) may have failed." 1>&2; - $echo The command "cmp g.O $srcdir/g.X" failed. 1>&2 ; + $echo The command "diff -a g.O $srcdir/g.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test h(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp h.O $srcdir/h.X > /dev/null 2>&1 + diff -a h.O $srcdir/h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed h(|)"; fi ;; 1) $echo "Test h(|) failed: files h.O and $srcdir/h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test h(|) may have failed." 1>&2; - $echo The command "cmp h.O $srcdir/h.X" failed. 1>&2 ; + $echo The command "diff -a h.O $srcdir/h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test h(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp h.O $srcdir/h.X > /dev/null 2>&1 + diff -a h.O $srcdir/h.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed h(<)"; fi ;; 1) $echo "Test h(<) failed: files h.O and $srcdir/h.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test h(<) may have failed." 1>&2; - $echo The command "cmp h.O $srcdir/h.X" failed. 1>&2 ; + $echo The command "diff -a h.O $srcdir/h.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test i(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i.O $srcdir/i.X > /dev/null 2>&1 + diff -a i.O $srcdir/i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i(|)"; fi ;; 1) $echo "Test i(|) failed: files i.O and $srcdir/i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i(|) may have failed." 1>&2; - $echo The command "cmp i.O $srcdir/i.X" failed. 1>&2 ; + $echo The command "diff -a i.O $srcdir/i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test i(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp i.O $srcdir/i.X > /dev/null 2>&1 + diff -a i.O $srcdir/i.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed i(<)"; fi ;; 1) $echo "Test i(<) failed: files i.O and $srcdir/i.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test i(<) may have failed." 1>&2; - $echo The command "cmp i.O $srcdir/i.X" failed. 1>&2 ; + $echo The command "diff -a i.O $srcdir/i.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test j(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp j.O $srcdir/j.X > /dev/null 2>&1 + diff -a j.O $srcdir/j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed j(|)"; fi ;; 1) $echo "Test j(|) failed: files j.O and $srcdir/j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test j(|) may have failed." 1>&2; - $echo The command "cmp j.O $srcdir/j.X" failed. 1>&2 ; + $echo The command "diff -a j.O $srcdir/j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test j(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp j.O $srcdir/j.X > /dev/null 2>&1 + diff -a j.O $srcdir/j.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed j(<)"; fi ;; 1) $echo "Test j(<) failed: files j.O and $srcdir/j.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test j(<) may have failed." 1>&2; - $echo The command "cmp j.O $srcdir/j.X" failed. 1>&2 ; + $echo The command "diff -a j.O $srcdir/j.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test k(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp k.O $srcdir/k.X > /dev/null 2>&1 + diff -a k.O $srcdir/k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed k(|)"; fi ;; 1) $echo "Test k(|) failed: files k.O and $srcdir/k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test k(|) may have failed." 1>&2; - $echo The command "cmp k.O $srcdir/k.X" failed. 1>&2 ; + $echo The command "diff -a k.O $srcdir/k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test k(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp k.O $srcdir/k.X > /dev/null 2>&1 + diff -a k.O $srcdir/k.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed k(<)"; fi ;; 1) $echo "Test k(<) failed: files k.O and $srcdir/k.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test k(<) may have failed." 1>&2; - $echo The command "cmp k.O $srcdir/k.X" failed. 1>&2 ; + $echo The command "diff -a k.O $srcdir/k.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test l(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp l.O $srcdir/l.X > /dev/null 2>&1 + diff -a l.O $srcdir/l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed l(|)"; fi ;; 1) $echo "Test l(|) failed: files l.O and $srcdir/l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test l(|) may have failed." 1>&2; - $echo The command "cmp l.O $srcdir/l.X" failed. 1>&2 ; + $echo The command "diff -a l.O $srcdir/l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test l(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp l.O $srcdir/l.X > /dev/null 2>&1 + diff -a l.O $srcdir/l.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed l(<)"; fi ;; 1) $echo "Test l(<) failed: files l.O and $srcdir/l.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test l(<) may have failed." 1>&2; - $echo The command "cmp l.O $srcdir/l.X" failed. 1>&2 ; + $echo The command "diff -a l.O $srcdir/l.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test m(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp m.O $srcdir/m.X > /dev/null 2>&1 + diff -a m.O $srcdir/m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed m(|)"; fi ;; 1) $echo "Test m(|) failed: files m.O and $srcdir/m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test m(|) may have failed." 1>&2; - $echo The command "cmp m.O $srcdir/m.X" failed. 1>&2 ; + $echo The command "diff -a m.O $srcdir/m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test m(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp m.O $srcdir/m.X > /dev/null 2>&1 + diff -a m.O $srcdir/m.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed m(<)"; fi ;; 1) $echo "Test m(<) failed: files m.O and $srcdir/m.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test m(<) may have failed." 1>&2; - $echo The command "cmp m.O $srcdir/m.X" failed. 1>&2 ; + $echo The command "diff -a m.O $srcdir/m.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test n(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n.O $srcdir/n.X > /dev/null 2>&1 + diff -a n.O $srcdir/n.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n(|)"; fi ;; 1) $echo "Test n(|) failed: files n.O and $srcdir/n.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n(|) may have failed." 1>&2; - $echo The command "cmp n.O $srcdir/n.X" failed. 1>&2 ; + $echo The command "diff -a n.O $srcdir/n.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test n(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp n.O $srcdir/n.X > /dev/null 2>&1 + diff -a n.O $srcdir/n.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed n(<)"; fi ;; 1) $echo "Test n(<) failed: files n.O and $srcdir/n.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test n(<) may have failed." 1>&2; - $echo The command "cmp n.O $srcdir/n.X" failed. 1>&2 ; + $echo The command "diff -a n.O $srcdir/n.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test o(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o.O $srcdir/o.X > /dev/null 2>&1 + diff -a o.O $srcdir/o.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o(|)"; fi ;; 1) $echo "Test o(|) failed: files o.O and $srcdir/o.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o(|) may have failed." 1>&2; - $echo The command "cmp o.O $srcdir/o.X" failed. 1>&2 ; + $echo The command "diff -a o.O $srcdir/o.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test o(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp o.O $srcdir/o.X > /dev/null 2>&1 + diff -a o.O $srcdir/o.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed o(<)"; fi ;; 1) $echo "Test o(<) failed: files o.O and $srcdir/o.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test o(<) may have failed." 1>&2; - $echo The command "cmp o.O $srcdir/o.X" failed. 1>&2 ; + $echo The command "diff -a o.O $srcdir/o.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test p(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp p.O $srcdir/p.X > /dev/null 2>&1 + diff -a p.O $srcdir/p.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed p(|)"; fi ;; 1) $echo "Test p(|) failed: files p.O and $srcdir/p.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test p(|) may have failed." 1>&2; - $echo The command "cmp p.O $srcdir/p.X" failed. 1>&2 ; + $echo The command "diff -a p.O $srcdir/p.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test p(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp p.O $srcdir/p.X > /dev/null 2>&1 + diff -a p.O $srcdir/p.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed p(<)"; fi ;; 1) $echo "Test p(<) failed: files p.O and $srcdir/p.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test p(<) may have failed." 1>&2; - $echo The command "cmp p.O $srcdir/p.X" failed. 1>&2 ; + $echo The command "diff -a p.O $srcdir/p.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test q(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp q.O $srcdir/q.X > /dev/null 2>&1 + diff -a q.O $srcdir/q.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed q(|)"; fi ;; 1) $echo "Test q(|) failed: files q.O and $srcdir/q.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test q(|) may have failed." 1>&2; - $echo The command "cmp q.O $srcdir/q.X" failed. 1>&2 ; + $echo The command "diff -a q.O $srcdir/q.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test q(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp q.O $srcdir/q.X > /dev/null 2>&1 + diff -a q.O $srcdir/q.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed q(<)"; fi ;; 1) $echo "Test q(<) failed: files q.O and $srcdir/q.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test q(<) may have failed." 1>&2; - $echo The command "cmp q.O $srcdir/q.X" failed. 1>&2 ; + $echo The command "diff -a q.O $srcdir/q.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test r(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp r.O $srcdir/r.X > /dev/null 2>&1 + diff -a r.O $srcdir/r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed r(|)"; fi ;; 1) $echo "Test r(|) failed: files r.O and $srcdir/r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test r(|) may have failed." 1>&2; - $echo The command "cmp r.O $srcdir/r.X" failed. 1>&2 ; + $echo The command "diff -a r.O $srcdir/r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test r(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp r.O $srcdir/r.X > /dev/null 2>&1 + diff -a r.O $srcdir/r.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed r(<)"; fi ;; 1) $echo "Test r(<) failed: files r.O and $srcdir/r.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test r(<) may have failed." 1>&2; - $echo The command "cmp r.O $srcdir/r.X" failed. 1>&2 ; + $echo The command "diff -a r.O $srcdir/r.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test s(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp s.O $srcdir/s.X > /dev/null 2>&1 + diff -a s.O $srcdir/s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed s(|)"; fi ;; 1) $echo "Test s(|) failed: files s.O and $srcdir/s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test s(|) may have failed." 1>&2; - $echo The command "cmp s.O $srcdir/s.X" failed. 1>&2 ; + $echo The command "diff -a s.O $srcdir/s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test s(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp s.O $srcdir/s.X > /dev/null 2>&1 + diff -a s.O $srcdir/s.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed s(<)"; fi ;; 1) $echo "Test s(<) failed: files s.O and $srcdir/s.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test s(<) may have failed." 1>&2; - $echo The command "cmp s.O $srcdir/s.X" failed. 1>&2 ; + $echo The command "diff -a s.O $srcdir/s.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test t(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp t.O $srcdir/t.X > /dev/null 2>&1 + diff -a t.O $srcdir/t.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed t(|)"; fi ;; 1) $echo "Test t(|) failed: files t.O and $srcdir/t.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test t(|) may have failed." 1>&2; - $echo The command "cmp t.O $srcdir/t.X" failed. 1>&2 ; + $echo The command "diff -a t.O $srcdir/t.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test t(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp t.O $srcdir/t.X > /dev/null 2>&1 + diff -a t.O $srcdir/t.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed t(<)"; fi ;; 1) $echo "Test t(<) failed: files t.O and $srcdir/t.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test t(<) may have failed." 1>&2; - $echo The command "cmp t.O $srcdir/t.X" failed. 1>&2 ; + $echo The command "diff -a t.O $srcdir/t.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test u(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp u.O $srcdir/u.X > /dev/null 2>&1 + diff -a u.O $srcdir/u.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed u(|)"; fi ;; 1) $echo "Test u(|) failed: files u.O and $srcdir/u.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test u(|) may have failed." 1>&2; - $echo The command "cmp u.O $srcdir/u.X" failed. 1>&2 ; + $echo The command "diff -a u.O $srcdir/u.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test u(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp u.O $srcdir/u.X > /dev/null 2>&1 + diff -a u.O $srcdir/u.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed u(<)"; fi ;; 1) $echo "Test u(<) failed: files u.O and $srcdir/u.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test u(<) may have failed." 1>&2; - $echo The command "cmp u.O $srcdir/u.X" failed. 1>&2 ; + $echo The command "diff -a u.O $srcdir/u.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test v(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp v.O $srcdir/v.X > /dev/null 2>&1 + diff -a v.O $srcdir/v.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed v(|)"; fi ;; 1) $echo "Test v(|) failed: files v.O and $srcdir/v.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test v(|) may have failed." 1>&2; - $echo The command "cmp v.O $srcdir/v.X" failed. 1>&2 ; + $echo The command "diff -a v.O $srcdir/v.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test v(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp v.O $srcdir/v.X > /dev/null 2>&1 + diff -a v.O $srcdir/v.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed v(<)"; fi ;; 1) $echo "Test v(<) failed: files v.O and $srcdir/v.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test v(<) may have failed." 1>&2; - $echo The command "cmp v.O $srcdir/v.X" failed. 1>&2 ; + $echo The command "diff -a v.O $srcdir/v.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test w(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp w.O $srcdir/w.X > /dev/null 2>&1 + diff -a w.O $srcdir/w.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed w(|)"; fi ;; 1) $echo "Test w(|) failed: files w.O and $srcdir/w.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test w(|) may have failed." 1>&2; - $echo The command "cmp w.O $srcdir/w.X" failed. 1>&2 ; + $echo The command "diff -a w.O $srcdir/w.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test w(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp w.O $srcdir/w.X > /dev/null 2>&1 + diff -a w.O $srcdir/w.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed w(<)"; fi ;; 1) $echo "Test w(<) failed: files w.O and $srcdir/w.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test w(<) may have failed." 1>&2; - $echo The command "cmp w.O $srcdir/w.X" failed. 1>&2 ; + $echo The command "diff -a w.O $srcdir/w.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test x(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp x.O $srcdir/x.X > /dev/null 2>&1 + diff -a x.O $srcdir/x.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed x(|)"; fi ;; 1) $echo "Test x(|) failed: files x.O and $srcdir/x.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test x(|) may have failed." 1>&2; - $echo The command "cmp x.O $srcdir/x.X" failed. 1>&2 ; + $echo The command "diff -a x.O $srcdir/x.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test x(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp x.O $srcdir/x.X > /dev/null 2>&1 + diff -a x.O $srcdir/x.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed x(<)"; fi ;; 1) $echo "Test x(<) failed: files x.O and $srcdir/x.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test x(<) may have failed." 1>&2; - $echo The command "cmp x.O $srcdir/x.X" failed. 1>&2 ; + $echo The command "diff -a x.O $srcdir/x.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test y(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp y.O $srcdir/y.X > /dev/null 2>&1 + diff -a y.O $srcdir/y.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed y(|)"; fi ;; 1) $echo "Test y(|) failed: files y.O and $srcdir/y.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test y(|) may have failed." 1>&2; - $echo The command "cmp y.O $srcdir/y.X" failed. 1>&2 ; + $echo The command "diff -a y.O $srcdir/y.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test y(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp y.O $srcdir/y.X > /dev/null 2>&1 + diff -a y.O $srcdir/y.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed y(<)"; fi ;; 1) $echo "Test y(<) failed: files y.O and $srcdir/y.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test y(<) may have failed." 1>&2; - $echo The command "cmp y.O $srcdir/y.X" failed. 1>&2 ; + $echo The command "diff -a y.O $srcdir/y.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test z(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp z.O $srcdir/z.X > /dev/null 2>&1 + diff -a z.O $srcdir/z.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed z(|)"; fi ;; 1) $echo "Test z(|) failed: files z.O and $srcdir/z.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test z(|) may have failed." 1>&2; - $echo The command "cmp z.O $srcdir/z.X" failed. 1>&2 ; + $echo The command "diff -a z.O $srcdir/z.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test z(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp z.O $srcdir/z.X > /dev/null 2>&1 + diff -a z.O $srcdir/z.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed z(<)"; fi ;; 1) $echo "Test z(<) failed: files z.O and $srcdir/z.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test z(<) may have failed." 1>&2; - $echo The command "cmp z.O $srcdir/z.X" failed. 1>&2 ; + $echo The command "diff -a z.O $srcdir/z.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test range-a-a(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp range-a-a.O $srcdir/range-a-a.X > /dev/null 2>&1 + diff -a range-a-a.O $srcdir/range-a-a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed range-a-a(|)"; fi ;; 1) $echo "Test range-a-a(|) failed: files range-a-a.O and $srcdir/range-a-a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test range-a-a(|) may have failed." 1>&2; - $echo The command "cmp range-a-a.O $srcdir/range-a-a.X" failed. 1>&2 ; + $echo The command "diff -a range-a-a.O $srcdir/range-a-a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test range-a-a(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp range-a-a.O $srcdir/range-a-a.X > /dev/null 2>&1 + diff -a range-a-a.O $srcdir/range-a-a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed range-a-a(<)"; fi ;; 1) $echo "Test range-a-a(<) failed: files range-a-a.O and $srcdir/range-a-a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test range-a-a(<) may have failed." 1>&2; - $echo The command "cmp range-a-a.O $srcdir/range-a-a.X" failed. 1>&2 ; + $echo The command "diff -a range-a-a.O $srcdir/range-a-a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test null(|) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp null.O $srcdir/null.X > /dev/null 2>&1 + diff -a null.O $srcdir/null.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed null(|)"; fi ;; 1) $echo "Test null(|) failed: files null.O and $srcdir/null.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test null(|) may have failed." 1>&2; - $echo The command "cmp null.O $srcdir/null.X" failed. 1>&2 ; + $echo The command "diff -a null.O $srcdir/null.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test null(<) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp null.O $srcdir/null.X > /dev/null 2>&1 + diff -a null.O $srcdir/null.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed null(<)"; fi ;; 1) $echo "Test null(<) failed: files null.O and $srcdir/null.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test null(<) may have failed." 1>&2; - $echo The command "cmp null.O $srcdir/null.X" failed. 1>&2 ; + $echo The command "diff -a null.O $srcdir/null.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test upcase(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp upcase.O $srcdir/upcase.X > /dev/null 2>&1 + diff -a upcase.O $srcdir/upcase.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed upcase(|)"; fi ;; 1) $echo "Test upcase(|) failed: files upcase.O and $srcdir/upcase.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test upcase(|) may have failed." 1>&2; - $echo The command "cmp upcase.O $srcdir/upcase.X" failed. 1>&2 ; + $echo The command "diff -a upcase.O $srcdir/upcase.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test upcase(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp upcase.O $srcdir/upcase.X > /dev/null 2>&1 + diff -a upcase.O $srcdir/upcase.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed upcase(<)"; fi ;; 1) $echo "Test upcase(<) failed: files upcase.O and $srcdir/upcase.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test upcase(<) may have failed." 1>&2; - $echo The command "cmp upcase.O $srcdir/upcase.X" failed. 1>&2 ; + $echo The command "diff -a upcase.O $srcdir/upcase.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test dncase(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp dncase.O $srcdir/dncase.X > /dev/null 2>&1 + diff -a dncase.O $srcdir/dncase.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed dncase(|)"; fi ;; 1) $echo "Test dncase(|) failed: files dncase.O and $srcdir/dncase.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test dncase(|) may have failed." 1>&2; - $echo The command "cmp dncase.O $srcdir/dncase.X" failed. 1>&2 ; + $echo The command "diff -a dncase.O $srcdir/dncase.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test dncase(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp dncase.O $srcdir/dncase.X > /dev/null 2>&1 + diff -a dncase.O $srcdir/dncase.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed dncase(<)"; fi ;; 1) $echo "Test dncase(<) failed: files dncase.O and $srcdir/dncase.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test dncase(<) may have failed." 1>&2; - $echo The command "cmp dncase.O $srcdir/dncase.X" failed. 1>&2 ; + $echo The command "diff -a dncase.O $srcdir/dncase.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test rep-cclass(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-cclass.O $srcdir/rep-cclass.X > /dev/null 2>&1 + diff -a rep-cclass.O $srcdir/rep-cclass.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-cclass(|)"; fi ;; 1) $echo "Test rep-cclass(|) failed: files rep-cclass.O and $srcdir/rep-cclass.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-cclass(|) may have failed." 1>&2; - $echo The command "cmp rep-cclass.O $srcdir/rep-cclass.X" failed. 1>&2 ; + $echo The command "diff -a rep-cclass.O $srcdir/rep-cclass.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test rep-cclass(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-cclass.O $srcdir/rep-cclass.X > /dev/null 2>&1 + diff -a rep-cclass.O $srcdir/rep-cclass.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-cclass(<)"; fi ;; 1) $echo "Test rep-cclass(<) failed: files rep-cclass.O and $srcdir/rep-cclass.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-cclass(<) may have failed." 1>&2; - $echo The command "cmp rep-cclass.O $srcdir/rep-cclass.X" failed. 1>&2 ; + $echo The command "diff -a rep-cclass.O $srcdir/rep-cclass.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test rep-1(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-1.O $srcdir/rep-1.X > /dev/null 2>&1 + diff -a rep-1.O $srcdir/rep-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-1(|)"; fi ;; 1) $echo "Test rep-1(|) failed: files rep-1.O and $srcdir/rep-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-1(|) may have failed." 1>&2; - $echo The command "cmp rep-1.O $srcdir/rep-1.X" failed. 1>&2 ; + $echo The command "diff -a rep-1.O $srcdir/rep-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test rep-1(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-1.O $srcdir/rep-1.X > /dev/null 2>&1 + diff -a rep-1.O $srcdir/rep-1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-1(<)"; fi ;; 1) $echo "Test rep-1(<) failed: files rep-1.O and $srcdir/rep-1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-1(<) may have failed." 1>&2; - $echo The command "cmp rep-1.O $srcdir/rep-1.X" failed. 1>&2 ; + $echo The command "diff -a rep-1.O $srcdir/rep-1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test rep-2(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-2.O $srcdir/rep-2.X > /dev/null 2>&1 + diff -a rep-2.O $srcdir/rep-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-2(|)"; fi ;; 1) $echo "Test rep-2(|) failed: files rep-2.O and $srcdir/rep-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-2(|) may have failed." 1>&2; - $echo The command "cmp rep-2.O $srcdir/rep-2.X" failed. 1>&2 ; + $echo The command "diff -a rep-2.O $srcdir/rep-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test rep-2(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-2.O $srcdir/rep-2.X > /dev/null 2>&1 + diff -a rep-2.O $srcdir/rep-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-2(<)"; fi ;; 1) $echo "Test rep-2(<) failed: files rep-2.O and $srcdir/rep-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-2(<) may have failed." 1>&2; - $echo The command "cmp rep-2.O $srcdir/rep-2.X" failed. 1>&2 ; + $echo The command "diff -a rep-2.O $srcdir/rep-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test rep-3(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-3.O $srcdir/rep-3.X > /dev/null 2>&1 + diff -a rep-3.O $srcdir/rep-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-3(|)"; fi ;; 1) $echo "Test rep-3(|) failed: files rep-3.O and $srcdir/rep-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-3(|) may have failed." 1>&2; - $echo The command "cmp rep-3.O $srcdir/rep-3.X" failed. 1>&2 ; + $echo The command "diff -a rep-3.O $srcdir/rep-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test rep-3(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp rep-3.O $srcdir/rep-3.X > /dev/null 2>&1 + diff -a rep-3.O $srcdir/rep-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed rep-3(<)"; fi ;; 1) $echo "Test rep-3(<) failed: files rep-3.O and $srcdir/rep-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test rep-3(<) may have failed." 1>&2; - $echo The command "cmp rep-3.O $srcdir/rep-3.X" failed. 1>&2 ; + $echo The command "diff -a rep-3.O $srcdir/rep-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test esc(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp esc.O $srcdir/esc.X > /dev/null 2>&1 + diff -a esc.O $srcdir/esc.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed esc(|)"; fi ;; 1) $echo "Test esc(|) failed: files esc.O and $srcdir/esc.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test esc(|) may have failed." 1>&2; - $echo The command "cmp esc.O $srcdir/esc.X" failed. 1>&2 ; + $echo The command "diff -a esc.O $srcdir/esc.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test esc(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp esc.O $srcdir/esc.X > /dev/null 2>&1 + diff -a esc.O $srcdir/esc.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed esc(<)"; fi ;; 1) $echo "Test esc(<) failed: files esc.O and $srcdir/esc.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test esc(<) may have failed." 1>&2; - $echo The command "cmp esc.O $srcdir/esc.X" failed. 1>&2 ; + $echo The command "diff -a esc.O $srcdir/esc.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test ross-0a(|) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp ross-0a.O $srcdir/ross-0a.X > /dev/null 2>&1 + diff -a ross-0a.O $srcdir/ross-0a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-0a(|)"; fi ;; 1) $echo "Test ross-0a(|) failed: files ross-0a.O and $srcdir/ross-0a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-0a(|) may have failed." 1>&2; - $echo The command "cmp ross-0a.O $srcdir/ross-0a.X" failed. 1>&2 ; + $echo The command "diff -a ross-0a.O $srcdir/ross-0a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test ross-0a(<) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp ross-0a.O $srcdir/ross-0a.X > /dev/null 2>&1 + diff -a ross-0a.O $srcdir/ross-0a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-0a(<)"; fi ;; 1) $echo "Test ross-0a(<) failed: files ross-0a.O and $srcdir/ross-0a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-0a(<) may have failed." 1>&2; - $echo The command "cmp ross-0a.O $srcdir/ross-0a.X" failed. 1>&2 ; + $echo The command "diff -a ross-0a.O $srcdir/ross-0a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1554,13 +1554,13 @@ $echo "Test ross-0b(|) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp ross-0b.O $srcdir/ross-0b.X > /dev/null 2>&1 + diff -a ross-0b.O $srcdir/ross-0b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-0b(|)"; fi ;; 1) $echo "Test ross-0b(|) failed: files ross-0b.O and $srcdir/ross-0b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-0b(|) may have failed." 1>&2; - $echo The command "cmp ross-0b.O $srcdir/ross-0b.X" failed. 1>&2 ; + $echo The command "diff -a ross-0b.O $srcdir/ross-0b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1571,13 +1571,13 @@ $echo "Test ross-0b(<) failed: ../../src/tr return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp ross-0b.O $srcdir/ross-0b.X > /dev/null 2>&1 + diff -a ross-0b.O $srcdir/ross-0b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-0b(<)"; fi ;; 1) $echo "Test ross-0b(<) failed: files ross-0b.O and $srcdir/ross-0b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-0b(<) may have failed." 1>&2; - $echo The command "cmp ross-0b.O $srcdir/ross-0b.X" failed. 1>&2 ; + $echo The command "diff -a ross-0b.O $srcdir/ross-0b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1588,13 +1588,13 @@ $echo "Test ross-1a(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-1a.O $srcdir/ross-1a.X > /dev/null 2>&1 + diff -a ross-1a.O $srcdir/ross-1a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-1a(|)"; fi ;; 1) $echo "Test ross-1a(|) failed: files ross-1a.O and $srcdir/ross-1a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-1a(|) may have failed." 1>&2; - $echo The command "cmp ross-1a.O $srcdir/ross-1a.X" failed. 1>&2 ; + $echo The command "diff -a ross-1a.O $srcdir/ross-1a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1605,13 +1605,13 @@ $echo "Test ross-1a(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-1a.O $srcdir/ross-1a.X > /dev/null 2>&1 + diff -a ross-1a.O $srcdir/ross-1a.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-1a(<)"; fi ;; 1) $echo "Test ross-1a(<) failed: files ross-1a.O and $srcdir/ross-1a.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-1a(<) may have failed." 1>&2; - $echo The command "cmp ross-1a.O $srcdir/ross-1a.X" failed. 1>&2 ; + $echo The command "diff -a ross-1a.O $srcdir/ross-1a.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1622,13 +1622,13 @@ $echo "Test ross-1b(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-1b.O $srcdir/ross-1b.X > /dev/null 2>&1 + diff -a ross-1b.O $srcdir/ross-1b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-1b(|)"; fi ;; 1) $echo "Test ross-1b(|) failed: files ross-1b.O and $srcdir/ross-1b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-1b(|) may have failed." 1>&2; - $echo The command "cmp ross-1b.O $srcdir/ross-1b.X" failed. 1>&2 ; + $echo The command "diff -a ross-1b.O $srcdir/ross-1b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1639,13 +1639,13 @@ $echo "Test ross-1b(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-1b.O $srcdir/ross-1b.X > /dev/null 2>&1 + diff -a ross-1b.O $srcdir/ross-1b.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-1b(<)"; fi ;; 1) $echo "Test ross-1b(<) failed: files ross-1b.O and $srcdir/ross-1b.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-1b(<) may have failed." 1>&2; - $echo The command "cmp ross-1b.O $srcdir/ross-1b.X" failed. 1>&2 ; + $echo The command "diff -a ross-1b.O $srcdir/ross-1b.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1656,13 +1656,13 @@ $echo "Test ross-2(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-2.O $srcdir/ross-2.X > /dev/null 2>&1 + diff -a ross-2.O $srcdir/ross-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-2(|)"; fi ;; 1) $echo "Test ross-2(|) failed: files ross-2.O and $srcdir/ross-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-2(|) may have failed." 1>&2; - $echo The command "cmp ross-2.O $srcdir/ross-2.X" failed. 1>&2 ; + $echo The command "diff -a ross-2.O $srcdir/ross-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1673,13 +1673,13 @@ $echo "Test ross-2(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-2.O $srcdir/ross-2.X > /dev/null 2>&1 + diff -a ross-2.O $srcdir/ross-2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-2(<)"; fi ;; 1) $echo "Test ross-2(<) failed: files ross-2.O and $srcdir/ross-2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-2(<) may have failed." 1>&2; - $echo The command "cmp ross-2.O $srcdir/ross-2.X" failed. 1>&2 ; + $echo The command "diff -a ross-2.O $srcdir/ross-2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1690,13 +1690,13 @@ $echo "Test ross-3(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-3.O $srcdir/ross-3.X > /dev/null 2>&1 + diff -a ross-3.O $srcdir/ross-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-3(|)"; fi ;; 1) $echo "Test ross-3(|) failed: files ross-3.O and $srcdir/ross-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-3(|) may have failed." 1>&2; - $echo The command "cmp ross-3.O $srcdir/ross-3.X" failed. 1>&2 ; + $echo The command "diff -a ross-3.O $srcdir/ross-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1707,13 +1707,13 @@ $echo "Test ross-3(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-3.O $srcdir/ross-3.X > /dev/null 2>&1 + diff -a ross-3.O $srcdir/ross-3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-3(<)"; fi ;; 1) $echo "Test ross-3(<) failed: files ross-3.O and $srcdir/ross-3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-3(<) may have failed." 1>&2; - $echo The command "cmp ross-3.O $srcdir/ross-3.X" failed. 1>&2 ; + $echo The command "diff -a ross-3.O $srcdir/ross-3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1724,13 +1724,13 @@ $echo "Test ross-4(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-4.O $srcdir/ross-4.X > /dev/null 2>&1 + diff -a ross-4.O $srcdir/ross-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-4(|)"; fi ;; 1) $echo "Test ross-4(|) failed: files ross-4.O and $srcdir/ross-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-4(|) may have failed." 1>&2; - $echo The command "cmp ross-4.O $srcdir/ross-4.X" failed. 1>&2 ; + $echo The command "diff -a ross-4.O $srcdir/ross-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1741,13 +1741,13 @@ $echo "Test ross-4(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-4.O $srcdir/ross-4.X > /dev/null 2>&1 + diff -a ross-4.O $srcdir/ross-4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-4(<)"; fi ;; 1) $echo "Test ross-4(<) failed: files ross-4.O and $srcdir/ross-4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-4(<) may have failed." 1>&2; - $echo The command "cmp ross-4.O $srcdir/ross-4.X" failed. 1>&2 ; + $echo The command "diff -a ross-4.O $srcdir/ross-4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1758,13 +1758,13 @@ $echo "Test ross-5(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-5.O $srcdir/ross-5.X > /dev/null 2>&1 + diff -a ross-5.O $srcdir/ross-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-5(|)"; fi ;; 1) $echo "Test ross-5(|) failed: files ross-5.O and $srcdir/ross-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-5(|) may have failed." 1>&2; - $echo The command "cmp ross-5.O $srcdir/ross-5.X" failed. 1>&2 ; + $echo The command "diff -a ross-5.O $srcdir/ross-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1775,13 +1775,13 @@ $echo "Test ross-5(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-5.O $srcdir/ross-5.X > /dev/null 2>&1 + diff -a ross-5.O $srcdir/ross-5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-5(<)"; fi ;; 1) $echo "Test ross-5(<) failed: files ross-5.O and $srcdir/ross-5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-5(<) may have failed." 1>&2; - $echo The command "cmp ross-5.O $srcdir/ross-5.X" failed. 1>&2 ; + $echo The command "diff -a ross-5.O $srcdir/ross-5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1792,13 +1792,13 @@ $echo "Test ross-6(|) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-6.O $srcdir/ross-6.X > /dev/null 2>&1 + diff -a ross-6.O $srcdir/ross-6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-6(|)"; fi ;; 1) $echo "Test ross-6(|) failed: files ross-6.O and $srcdir/ross-6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-6(|) may have failed." 1>&2; - $echo The command "cmp ross-6.O $srcdir/ross-6.X" failed. 1>&2 ; + $echo The command "diff -a ross-6.O $srcdir/ross-6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1809,13 +1809,13 @@ $echo "Test ross-6(<) failed: ../../src/tr return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp ross-6.O $srcdir/ross-6.X > /dev/null 2>&1 + diff -a ross-6.O $srcdir/ross-6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed ross-6(<)"; fi ;; 1) $echo "Test ross-6(<) failed: files ross-6.O and $srcdir/ross-6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test ross-6(<) may have failed." 1>&2; - $echo The command "cmp ross-6.O $srcdir/ross-6.X" failed. 1>&2 ; + $echo The command "diff -a ross-6.O $srcdir/ross-6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/uniq/uniq-tests Fri Jan 29 13:56:18 1999 +++ gnu/textutils-2.0/tests/uniq/uniq-tests Sun Oct 21 00:23:56 2001 @@ -24,13 +24,13 @@ $echo "Test 1(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(|)"; fi ;; 1) $echo "Test 1(|) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(|) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test 1(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 1.O $srcdir/1.X > /dev/null 2>&1 + diff -a 1.O $srcdir/1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 1(<)"; fi ;; 1) $echo "Test 1(<) failed: files 1.O and $srcdir/1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 1(<) may have failed." 1>&2; - $echo The command "cmp 1.O $srcdir/1.X" failed. 1>&2 ; + $echo The command "diff -a 1.O $srcdir/1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test 2(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(|)"; fi ;; 1) $echo "Test 2(|) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(|) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test 2(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 2.O $srcdir/2.X > /dev/null 2>&1 + diff -a 2.O $srcdir/2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 2(<)"; fi ;; 1) $echo "Test 2(<) failed: files 2.O and $srcdir/2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 2(<) may have failed." 1>&2; - $echo The command "cmp 2.O $srcdir/2.X" failed. 1>&2 ; + $echo The command "diff -a 2.O $srcdir/2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test 3(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(|)"; fi ;; 1) $echo "Test 3(|) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(|) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test 3(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 3.O $srcdir/3.X > /dev/null 2>&1 + diff -a 3.O $srcdir/3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 3(<)"; fi ;; 1) $echo "Test 3(<) failed: files 3.O and $srcdir/3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 3(<) may have failed." 1>&2; - $echo The command "cmp 3.O $srcdir/3.X" failed. 1>&2 ; + $echo The command "diff -a 3.O $srcdir/3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test 4(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(|)"; fi ;; 1) $echo "Test 4(|) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(|) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test 4(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 4.O $srcdir/4.X > /dev/null 2>&1 + diff -a 4.O $srcdir/4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 4(<)"; fi ;; 1) $echo "Test 4(<) failed: files 4.O and $srcdir/4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 4(<) may have failed." 1>&2; - $echo The command "cmp 4.O $srcdir/4.X" failed. 1>&2 ; + $echo The command "diff -a 4.O $srcdir/4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test 5(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(|)"; fi ;; 1) $echo "Test 5(|) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(|) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test 5(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 5.O $srcdir/5.X > /dev/null 2>&1 + diff -a 5.O $srcdir/5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 5(<)"; fi ;; 1) $echo "Test 5(<) failed: files 5.O and $srcdir/5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 5(<) may have failed." 1>&2; - $echo The command "cmp 5.O $srcdir/5.X" failed. 1>&2 ; + $echo The command "diff -a 5.O $srcdir/5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test 6(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(|)"; fi ;; 1) $echo "Test 6(|) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(|) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test 6(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 6.O $srcdir/6.X > /dev/null 2>&1 + diff -a 6.O $srcdir/6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 6(<)"; fi ;; 1) $echo "Test 6(<) failed: files 6.O and $srcdir/6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 6(<) may have failed." 1>&2; - $echo The command "cmp 6.O $srcdir/6.X" failed. 1>&2 ; + $echo The command "diff -a 6.O $srcdir/6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test 7(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(|)"; fi ;; 1) $echo "Test 7(|) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(|) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test 7(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 7.O $srcdir/7.X > /dev/null 2>&1 + diff -a 7.O $srcdir/7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 7(<)"; fi ;; 1) $echo "Test 7(<) failed: files 7.O and $srcdir/7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 7(<) may have failed." 1>&2; - $echo The command "cmp 7.O $srcdir/7.X" failed. 1>&2 ; + $echo The command "diff -a 7.O $srcdir/7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test 8(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(|)"; fi ;; 1) $echo "Test 8(|) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(|) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test 8(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 8.O $srcdir/8.X > /dev/null 2>&1 + diff -a 8.O $srcdir/8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 8(<)"; fi ;; 1) $echo "Test 8(<) failed: files 8.O and $srcdir/8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 8(<) may have failed." 1>&2; - $echo The command "cmp 8.O $srcdir/8.X" failed. 1>&2 ; + $echo The command "diff -a 8.O $srcdir/8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test 9(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(|)"; fi ;; 1) $echo "Test 9(|) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(|) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test 9(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 9.O $srcdir/9.X > /dev/null 2>&1 + diff -a 9.O $srcdir/9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 9(<)"; fi ;; 1) $echo "Test 9(<) failed: files 9.O and $srcdir/9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 9(<) may have failed." 1>&2; - $echo The command "cmp 9.O $srcdir/9.X" failed. 1>&2 ; + $echo The command "diff -a 9.O $srcdir/9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test 10(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10.O $srcdir/10.X > /dev/null 2>&1 + diff -a 10.O $srcdir/10.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10(|)"; fi ;; 1) $echo "Test 10(|) failed: files 10.O and $srcdir/10.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10(|) may have failed." 1>&2; - $echo The command "cmp 10.O $srcdir/10.X" failed. 1>&2 ; + $echo The command "diff -a 10.O $srcdir/10.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test 10(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 10.O $srcdir/10.X > /dev/null 2>&1 + diff -a 10.O $srcdir/10.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 10(<)"; fi ;; 1) $echo "Test 10(<) failed: files 10.O and $srcdir/10.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 10(<) may have failed." 1>&2; - $echo The command "cmp 10.O $srcdir/10.X" failed. 1>&2 ; + $echo The command "diff -a 10.O $srcdir/10.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test 11(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11.O $srcdir/11.X > /dev/null 2>&1 + diff -a 11.O $srcdir/11.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11(|)"; fi ;; 1) $echo "Test 11(|) failed: files 11.O and $srcdir/11.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11(|) may have failed." 1>&2; - $echo The command "cmp 11.O $srcdir/11.X" failed. 1>&2 ; + $echo The command "diff -a 11.O $srcdir/11.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test 11(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 11.O $srcdir/11.X > /dev/null 2>&1 + diff -a 11.O $srcdir/11.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 11(<)"; fi ;; 1) $echo "Test 11(<) failed: files 11.O and $srcdir/11.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 11(<) may have failed." 1>&2; - $echo The command "cmp 11.O $srcdir/11.X" failed. 1>&2 ; + $echo The command "diff -a 11.O $srcdir/11.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test 12(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12.O $srcdir/12.X > /dev/null 2>&1 + diff -a 12.O $srcdir/12.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12(|)"; fi ;; 1) $echo "Test 12(|) failed: files 12.O and $srcdir/12.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12(|) may have failed." 1>&2; - $echo The command "cmp 12.O $srcdir/12.X" failed. 1>&2 ; + $echo The command "diff -a 12.O $srcdir/12.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test 12(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 12.O $srcdir/12.X > /dev/null 2>&1 + diff -a 12.O $srcdir/12.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 12(<)"; fi ;; 1) $echo "Test 12(<) failed: files 12.O and $srcdir/12.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 12(<) may have failed." 1>&2; - $echo The command "cmp 12.O $srcdir/12.X" failed. 1>&2 ; + $echo The command "diff -a 12.O $srcdir/12.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test 13(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13.O $srcdir/13.X > /dev/null 2>&1 + diff -a 13.O $srcdir/13.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13(|)"; fi ;; 1) $echo "Test 13(|) failed: files 13.O and $srcdir/13.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13(|) may have failed." 1>&2; - $echo The command "cmp 13.O $srcdir/13.X" failed. 1>&2 ; + $echo The command "diff -a 13.O $srcdir/13.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test 13(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 13.O $srcdir/13.X > /dev/null 2>&1 + diff -a 13.O $srcdir/13.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 13(<)"; fi ;; 1) $echo "Test 13(<) failed: files 13.O and $srcdir/13.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 13(<) may have failed." 1>&2; - $echo The command "cmp 13.O $srcdir/13.X" failed. 1>&2 ; + $echo The command "diff -a 13.O $srcdir/13.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test 20(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 20.O $srcdir/20.X > /dev/null 2>&1 + diff -a 20.O $srcdir/20.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 20(|)"; fi ;; 1) $echo "Test 20(|) failed: files 20.O and $srcdir/20.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 20(|) may have failed." 1>&2; - $echo The command "cmp 20.O $srcdir/20.X" failed. 1>&2 ; + $echo The command "diff -a 20.O $srcdir/20.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test 20(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 20.O $srcdir/20.X > /dev/null 2>&1 + diff -a 20.O $srcdir/20.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 20(<)"; fi ;; 1) $echo "Test 20(<) failed: files 20.O and $srcdir/20.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 20(<) may have failed." 1>&2; - $echo The command "cmp 20.O $srcdir/20.X" failed. 1>&2 ; + $echo The command "diff -a 20.O $srcdir/20.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test 21(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21.O $srcdir/21.X > /dev/null 2>&1 + diff -a 21.O $srcdir/21.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21(|)"; fi ;; 1) $echo "Test 21(|) failed: files 21.O and $srcdir/21.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21(|) may have failed." 1>&2; - $echo The command "cmp 21.O $srcdir/21.X" failed. 1>&2 ; + $echo The command "diff -a 21.O $srcdir/21.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test 21(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 21.O $srcdir/21.X > /dev/null 2>&1 + diff -a 21.O $srcdir/21.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 21(<)"; fi ;; 1) $echo "Test 21(<) failed: files 21.O and $srcdir/21.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 21(<) may have failed." 1>&2; - $echo The command "cmp 21.O $srcdir/21.X" failed. 1>&2 ; + $echo The command "diff -a 21.O $srcdir/21.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -534,13 +534,13 @@ $echo "Test 22(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 22.O $srcdir/22.X > /dev/null 2>&1 + diff -a 22.O $srcdir/22.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 22(|)"; fi ;; 1) $echo "Test 22(|) failed: files 22.O and $srcdir/22.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 22(|) may have failed." 1>&2; - $echo The command "cmp 22.O $srcdir/22.X" failed. 1>&2 ; + $echo The command "diff -a 22.O $srcdir/22.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -551,13 +551,13 @@ $echo "Test 22(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 22.O $srcdir/22.X > /dev/null 2>&1 + diff -a 22.O $srcdir/22.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 22(<)"; fi ;; 1) $echo "Test 22(<) failed: files 22.O and $srcdir/22.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 22(<) may have failed." 1>&2; - $echo The command "cmp 22.O $srcdir/22.X" failed. 1>&2 ; + $echo The command "diff -a 22.O $srcdir/22.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -568,13 +568,13 @@ $echo "Test 23(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 23.O $srcdir/23.X > /dev/null 2>&1 + diff -a 23.O $srcdir/23.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 23(|)"; fi ;; 1) $echo "Test 23(|) failed: files 23.O and $srcdir/23.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 23(|) may have failed." 1>&2; - $echo The command "cmp 23.O $srcdir/23.X" failed. 1>&2 ; + $echo The command "diff -a 23.O $srcdir/23.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -585,13 +585,13 @@ $echo "Test 23(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 23.O $srcdir/23.X > /dev/null 2>&1 + diff -a 23.O $srcdir/23.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 23(<)"; fi ;; 1) $echo "Test 23(<) failed: files 23.O and $srcdir/23.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 23(<) may have failed." 1>&2; - $echo The command "cmp 23.O $srcdir/23.X" failed. 1>&2 ; + $echo The command "diff -a 23.O $srcdir/23.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -602,13 +602,13 @@ $echo "Test 30(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 30.O $srcdir/30.X > /dev/null 2>&1 + diff -a 30.O $srcdir/30.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 30(|)"; fi ;; 1) $echo "Test 30(|) failed: files 30.O and $srcdir/30.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 30(|) may have failed." 1>&2; - $echo The command "cmp 30.O $srcdir/30.X" failed. 1>&2 ; + $echo The command "diff -a 30.O $srcdir/30.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -619,13 +619,13 @@ $echo "Test 30(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 30.O $srcdir/30.X > /dev/null 2>&1 + diff -a 30.O $srcdir/30.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 30(<)"; fi ;; 1) $echo "Test 30(<) failed: files 30.O and $srcdir/30.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 30(<) may have failed." 1>&2; - $echo The command "cmp 30.O $srcdir/30.X" failed. 1>&2 ; + $echo The command "diff -a 30.O $srcdir/30.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -636,13 +636,13 @@ $echo "Test 31(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 31.O $srcdir/31.X > /dev/null 2>&1 + diff -a 31.O $srcdir/31.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 31(|)"; fi ;; 1) $echo "Test 31(|) failed: files 31.O and $srcdir/31.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 31(|) may have failed." 1>&2; - $echo The command "cmp 31.O $srcdir/31.X" failed. 1>&2 ; + $echo The command "diff -a 31.O $srcdir/31.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -653,13 +653,13 @@ $echo "Test 31(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 31.O $srcdir/31.X > /dev/null 2>&1 + diff -a 31.O $srcdir/31.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 31(<)"; fi ;; 1) $echo "Test 31(<) failed: files 31.O and $srcdir/31.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 31(<) may have failed." 1>&2; - $echo The command "cmp 31.O $srcdir/31.X" failed. 1>&2 ; + $echo The command "diff -a 31.O $srcdir/31.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -670,13 +670,13 @@ $echo "Test 32(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 32.O $srcdir/32.X > /dev/null 2>&1 + diff -a 32.O $srcdir/32.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 32(|)"; fi ;; 1) $echo "Test 32(|) failed: files 32.O and $srcdir/32.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 32(|) may have failed." 1>&2; - $echo The command "cmp 32.O $srcdir/32.X" failed. 1>&2 ; + $echo The command "diff -a 32.O $srcdir/32.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -687,13 +687,13 @@ $echo "Test 32(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 32.O $srcdir/32.X > /dev/null 2>&1 + diff -a 32.O $srcdir/32.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 32(<)"; fi ;; 1) $echo "Test 32(<) failed: files 32.O and $srcdir/32.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 32(<) may have failed." 1>&2; - $echo The command "cmp 32.O $srcdir/32.X" failed. 1>&2 ; + $echo The command "diff -a 32.O $srcdir/32.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -704,13 +704,13 @@ $echo "Test 33(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 33.O $srcdir/33.X > /dev/null 2>&1 + diff -a 33.O $srcdir/33.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 33(|)"; fi ;; 1) $echo "Test 33(|) failed: files 33.O and $srcdir/33.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 33(|) may have failed." 1>&2; - $echo The command "cmp 33.O $srcdir/33.X" failed. 1>&2 ; + $echo The command "diff -a 33.O $srcdir/33.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -721,13 +721,13 @@ $echo "Test 33(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 33.O $srcdir/33.X > /dev/null 2>&1 + diff -a 33.O $srcdir/33.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 33(<)"; fi ;; 1) $echo "Test 33(<) failed: files 33.O and $srcdir/33.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 33(<) may have failed." 1>&2; - $echo The command "cmp 33.O $srcdir/33.X" failed. 1>&2 ; + $echo The command "diff -a 33.O $srcdir/33.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -738,13 +738,13 @@ $echo "Test 34(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 34.O $srcdir/34.X > /dev/null 2>&1 + diff -a 34.O $srcdir/34.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 34(|)"; fi ;; 1) $echo "Test 34(|) failed: files 34.O and $srcdir/34.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 34(|) may have failed." 1>&2; - $echo The command "cmp 34.O $srcdir/34.X" failed. 1>&2 ; + $echo The command "diff -a 34.O $srcdir/34.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -755,13 +755,13 @@ $echo "Test 34(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 34.O $srcdir/34.X > /dev/null 2>&1 + diff -a 34.O $srcdir/34.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 34(<)"; fi ;; 1) $echo "Test 34(<) failed: files 34.O and $srcdir/34.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 34(<) may have failed." 1>&2; - $echo The command "cmp 34.O $srcdir/34.X" failed. 1>&2 ; + $echo The command "diff -a 34.O $srcdir/34.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -772,13 +772,13 @@ $echo "Test 35(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 35.O $srcdir/35.X > /dev/null 2>&1 + diff -a 35.O $srcdir/35.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 35(|)"; fi ;; 1) $echo "Test 35(|) failed: files 35.O and $srcdir/35.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 35(|) may have failed." 1>&2; - $echo The command "cmp 35.O $srcdir/35.X" failed. 1>&2 ; + $echo The command "diff -a 35.O $srcdir/35.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -789,13 +789,13 @@ $echo "Test 35(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 35.O $srcdir/35.X > /dev/null 2>&1 + diff -a 35.O $srcdir/35.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 35(<)"; fi ;; 1) $echo "Test 35(<) failed: files 35.O and $srcdir/35.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 35(<) may have failed." 1>&2; - $echo The command "cmp 35.O $srcdir/35.X" failed. 1>&2 ; + $echo The command "diff -a 35.O $srcdir/35.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -806,13 +806,13 @@ $echo "Test 42(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 42.O $srcdir/42.X > /dev/null 2>&1 + diff -a 42.O $srcdir/42.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 42(|)"; fi ;; 1) $echo "Test 42(|) failed: files 42.O and $srcdir/42.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 42(|) may have failed." 1>&2; - $echo The command "cmp 42.O $srcdir/42.X" failed. 1>&2 ; + $echo The command "diff -a 42.O $srcdir/42.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -823,13 +823,13 @@ $echo "Test 42(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 42.O $srcdir/42.X > /dev/null 2>&1 + diff -a 42.O $srcdir/42.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 42(<)"; fi ;; 1) $echo "Test 42(<) failed: files 42.O and $srcdir/42.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 42(<) may have failed." 1>&2; - $echo The command "cmp 42.O $srcdir/42.X" failed. 1>&2 ; + $echo The command "diff -a 42.O $srcdir/42.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -840,13 +840,13 @@ $echo "Test 43(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 43.O $srcdir/43.X > /dev/null 2>&1 + diff -a 43.O $srcdir/43.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 43(|)"; fi ;; 1) $echo "Test 43(|) failed: files 43.O and $srcdir/43.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 43(|) may have failed." 1>&2; - $echo The command "cmp 43.O $srcdir/43.X" failed. 1>&2 ; + $echo The command "diff -a 43.O $srcdir/43.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -857,13 +857,13 @@ $echo "Test 43(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 43.O $srcdir/43.X > /dev/null 2>&1 + diff -a 43.O $srcdir/43.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 43(<)"; fi ;; 1) $echo "Test 43(<) failed: files 43.O and $srcdir/43.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 43(<) may have failed." 1>&2; - $echo The command "cmp 43.O $srcdir/43.X" failed. 1>&2 ; + $echo The command "diff -a 43.O $srcdir/43.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -874,13 +874,13 @@ $echo "Test 50(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 50.O $srcdir/50.X > /dev/null 2>&1 + diff -a 50.O $srcdir/50.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 50(|)"; fi ;; 1) $echo "Test 50(|) failed: files 50.O and $srcdir/50.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 50(|) may have failed." 1>&2; - $echo The command "cmp 50.O $srcdir/50.X" failed. 1>&2 ; + $echo The command "diff -a 50.O $srcdir/50.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -891,13 +891,13 @@ $echo "Test 50(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 50.O $srcdir/50.X > /dev/null 2>&1 + diff -a 50.O $srcdir/50.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 50(<)"; fi ;; 1) $echo "Test 50(<) failed: files 50.O and $srcdir/50.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 50(<) may have failed." 1>&2; - $echo The command "cmp 50.O $srcdir/50.X" failed. 1>&2 ; + $echo The command "diff -a 50.O $srcdir/50.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -908,13 +908,13 @@ $echo "Test 51(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 51.O $srcdir/51.X > /dev/null 2>&1 + diff -a 51.O $srcdir/51.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 51(|)"; fi ;; 1) $echo "Test 51(|) failed: files 51.O and $srcdir/51.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 51(|) may have failed." 1>&2; - $echo The command "cmp 51.O $srcdir/51.X" failed. 1>&2 ; + $echo The command "diff -a 51.O $srcdir/51.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -925,13 +925,13 @@ $echo "Test 51(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 51.O $srcdir/51.X > /dev/null 2>&1 + diff -a 51.O $srcdir/51.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 51(<)"; fi ;; 1) $echo "Test 51(<) failed: files 51.O and $srcdir/51.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 51(<) may have failed." 1>&2; - $echo The command "cmp 51.O $srcdir/51.X" failed. 1>&2 ; + $echo The command "diff -a 51.O $srcdir/51.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -942,13 +942,13 @@ $echo "Test 52(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 52.O $srcdir/52.X > /dev/null 2>&1 + diff -a 52.O $srcdir/52.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 52(|)"; fi ;; 1) $echo "Test 52(|) failed: files 52.O and $srcdir/52.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 52(|) may have failed." 1>&2; - $echo The command "cmp 52.O $srcdir/52.X" failed. 1>&2 ; + $echo The command "diff -a 52.O $srcdir/52.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -959,13 +959,13 @@ $echo "Test 52(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 52.O $srcdir/52.X > /dev/null 2>&1 + diff -a 52.O $srcdir/52.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 52(<)"; fi ;; 1) $echo "Test 52(<) failed: files 52.O and $srcdir/52.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 52(<) may have failed." 1>&2; - $echo The command "cmp 52.O $srcdir/52.X" failed. 1>&2 ; + $echo The command "diff -a 52.O $srcdir/52.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -976,13 +976,13 @@ $echo "Test 53(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 53.O $srcdir/53.X > /dev/null 2>&1 + diff -a 53.O $srcdir/53.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 53(|)"; fi ;; 1) $echo "Test 53(|) failed: files 53.O and $srcdir/53.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 53(|) may have failed." 1>&2; - $echo The command "cmp 53.O $srcdir/53.X" failed. 1>&2 ; + $echo The command "diff -a 53.O $srcdir/53.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -993,13 +993,13 @@ $echo "Test 53(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 53.O $srcdir/53.X > /dev/null 2>&1 + diff -a 53.O $srcdir/53.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 53(<)"; fi ;; 1) $echo "Test 53(<) failed: files 53.O and $srcdir/53.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 53(<) may have failed." 1>&2; - $echo The command "cmp 53.O $srcdir/53.X" failed. 1>&2 ; + $echo The command "diff -a 53.O $srcdir/53.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1010,13 +1010,13 @@ $echo "Test 60(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 60.O $srcdir/60.X > /dev/null 2>&1 + diff -a 60.O $srcdir/60.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 60(|)"; fi ;; 1) $echo "Test 60(|) failed: files 60.O and $srcdir/60.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 60(|) may have failed." 1>&2; - $echo The command "cmp 60.O $srcdir/60.X" failed. 1>&2 ; + $echo The command "diff -a 60.O $srcdir/60.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1027,13 +1027,13 @@ $echo "Test 60(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 60.O $srcdir/60.X > /dev/null 2>&1 + diff -a 60.O $srcdir/60.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 60(<)"; fi ;; 1) $echo "Test 60(<) failed: files 60.O and $srcdir/60.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 60(<) may have failed." 1>&2; - $echo The command "cmp 60.O $srcdir/60.X" failed. 1>&2 ; + $echo The command "diff -a 60.O $srcdir/60.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1044,13 +1044,13 @@ $echo "Test 61(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 61.O $srcdir/61.X > /dev/null 2>&1 + diff -a 61.O $srcdir/61.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 61(|)"; fi ;; 1) $echo "Test 61(|) failed: files 61.O and $srcdir/61.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 61(|) may have failed." 1>&2; - $echo The command "cmp 61.O $srcdir/61.X" failed. 1>&2 ; + $echo The command "diff -a 61.O $srcdir/61.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1061,13 +1061,13 @@ $echo "Test 61(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 61.O $srcdir/61.X > /dev/null 2>&1 + diff -a 61.O $srcdir/61.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 61(<)"; fi ;; 1) $echo "Test 61(<) failed: files 61.O and $srcdir/61.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 61(<) may have failed." 1>&2; - $echo The command "cmp 61.O $srcdir/61.X" failed. 1>&2 ; + $echo The command "diff -a 61.O $srcdir/61.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1078,13 +1078,13 @@ $echo "Test 62(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 62.O $srcdir/62.X > /dev/null 2>&1 + diff -a 62.O $srcdir/62.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 62(|)"; fi ;; 1) $echo "Test 62(|) failed: files 62.O and $srcdir/62.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 62(|) may have failed." 1>&2; - $echo The command "cmp 62.O $srcdir/62.X" failed. 1>&2 ; + $echo The command "diff -a 62.O $srcdir/62.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1095,13 +1095,13 @@ $echo "Test 62(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 62.O $srcdir/62.X > /dev/null 2>&1 + diff -a 62.O $srcdir/62.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 62(<)"; fi ;; 1) $echo "Test 62(<) failed: files 62.O and $srcdir/62.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 62(<) may have failed." 1>&2; - $echo The command "cmp 62.O $srcdir/62.X" failed. 1>&2 ; + $echo The command "diff -a 62.O $srcdir/62.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1112,13 +1112,13 @@ $echo "Test 63(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 63.O $srcdir/63.X > /dev/null 2>&1 + diff -a 63.O $srcdir/63.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 63(|)"; fi ;; 1) $echo "Test 63(|) failed: files 63.O and $srcdir/63.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 63(|) may have failed." 1>&2; - $echo The command "cmp 63.O $srcdir/63.X" failed. 1>&2 ; + $echo The command "diff -a 63.O $srcdir/63.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1129,13 +1129,13 @@ $echo "Test 63(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 63.O $srcdir/63.X > /dev/null 2>&1 + diff -a 63.O $srcdir/63.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 63(<)"; fi ;; 1) $echo "Test 63(<) failed: files 63.O and $srcdir/63.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 63(<) may have failed." 1>&2; - $echo The command "cmp 63.O $srcdir/63.X" failed. 1>&2 ; + $echo The command "diff -a 63.O $srcdir/63.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1146,13 +1146,13 @@ $echo "Test 64(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 64.O $srcdir/64.X > /dev/null 2>&1 + diff -a 64.O $srcdir/64.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 64(|)"; fi ;; 1) $echo "Test 64(|) failed: files 64.O and $srcdir/64.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 64(|) may have failed." 1>&2; - $echo The command "cmp 64.O $srcdir/64.X" failed. 1>&2 ; + $echo The command "diff -a 64.O $srcdir/64.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1163,13 +1163,13 @@ $echo "Test 64(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 64.O $srcdir/64.X > /dev/null 2>&1 + diff -a 64.O $srcdir/64.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 64(<)"; fi ;; 1) $echo "Test 64(<) failed: files 64.O and $srcdir/64.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 64(<) may have failed." 1>&2; - $echo The command "cmp 64.O $srcdir/64.X" failed. 1>&2 ; + $echo The command "diff -a 64.O $srcdir/64.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1180,13 +1180,13 @@ $echo "Test 65(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 65.O $srcdir/65.X > /dev/null 2>&1 + diff -a 65.O $srcdir/65.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 65(|)"; fi ;; 1) $echo "Test 65(|) failed: files 65.O and $srcdir/65.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 65(|) may have failed." 1>&2; - $echo The command "cmp 65.O $srcdir/65.X" failed. 1>&2 ; + $echo The command "diff -a 65.O $srcdir/65.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1197,13 +1197,13 @@ $echo "Test 65(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 65.O $srcdir/65.X > /dev/null 2>&1 + diff -a 65.O $srcdir/65.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 65(<)"; fi ;; 1) $echo "Test 65(<) failed: files 65.O and $srcdir/65.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 65(<) may have failed." 1>&2; - $echo The command "cmp 65.O $srcdir/65.X" failed. 1>&2 ; + $echo The command "diff -a 65.O $srcdir/65.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1214,13 +1214,13 @@ $echo "Test 90(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 90.O $srcdir/90.X > /dev/null 2>&1 + diff -a 90.O $srcdir/90.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 90(|)"; fi ;; 1) $echo "Test 90(|) failed: files 90.O and $srcdir/90.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 90(|) may have failed." 1>&2; - $echo The command "cmp 90.O $srcdir/90.X" failed. 1>&2 ; + $echo The command "diff -a 90.O $srcdir/90.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1231,13 +1231,13 @@ $echo "Test 90(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 90.O $srcdir/90.X > /dev/null 2>&1 + diff -a 90.O $srcdir/90.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 90(<)"; fi ;; 1) $echo "Test 90(<) failed: files 90.O and $srcdir/90.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 90(<) may have failed." 1>&2; - $echo The command "cmp 90.O $srcdir/90.X" failed. 1>&2 ; + $echo The command "diff -a 90.O $srcdir/90.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1248,13 +1248,13 @@ $echo "Test 91(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 91.O $srcdir/91.X > /dev/null 2>&1 + diff -a 91.O $srcdir/91.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 91(|)"; fi ;; 1) $echo "Test 91(|) failed: files 91.O and $srcdir/91.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 91(|) may have failed." 1>&2; - $echo The command "cmp 91.O $srcdir/91.X" failed. 1>&2 ; + $echo The command "diff -a 91.O $srcdir/91.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1265,13 +1265,13 @@ $echo "Test 91(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 91.O $srcdir/91.X > /dev/null 2>&1 + diff -a 91.O $srcdir/91.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 91(<)"; fi ;; 1) $echo "Test 91(<) failed: files 91.O and $srcdir/91.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 91(<) may have failed." 1>&2; - $echo The command "cmp 91.O $srcdir/91.X" failed. 1>&2 ; + $echo The command "diff -a 91.O $srcdir/91.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1282,13 +1282,13 @@ $echo "Test 92(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 92.O $srcdir/92.X > /dev/null 2>&1 + diff -a 92.O $srcdir/92.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 92(|)"; fi ;; 1) $echo "Test 92(|) failed: files 92.O and $srcdir/92.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 92(|) may have failed." 1>&2; - $echo The command "cmp 92.O $srcdir/92.X" failed. 1>&2 ; + $echo The command "diff -a 92.O $srcdir/92.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1299,13 +1299,13 @@ $echo "Test 92(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 92.O $srcdir/92.X > /dev/null 2>&1 + diff -a 92.O $srcdir/92.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 92(<)"; fi ;; 1) $echo "Test 92(<) failed: files 92.O and $srcdir/92.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 92(<) may have failed." 1>&2; - $echo The command "cmp 92.O $srcdir/92.X" failed. 1>&2 ; + $echo The command "diff -a 92.O $srcdir/92.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1316,13 +1316,13 @@ $echo "Test 93(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 93.O $srcdir/93.X > /dev/null 2>&1 + diff -a 93.O $srcdir/93.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 93(|)"; fi ;; 1) $echo "Test 93(|) failed: files 93.O and $srcdir/93.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 93(|) may have failed." 1>&2; - $echo The command "cmp 93.O $srcdir/93.X" failed. 1>&2 ; + $echo The command "diff -a 93.O $srcdir/93.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1333,13 +1333,13 @@ $echo "Test 93(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 93.O $srcdir/93.X > /dev/null 2>&1 + diff -a 93.O $srcdir/93.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 93(<)"; fi ;; 1) $echo "Test 93(<) failed: files 93.O and $srcdir/93.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 93(<) may have failed." 1>&2; - $echo The command "cmp 93.O $srcdir/93.X" failed. 1>&2 ; + $echo The command "diff -a 93.O $srcdir/93.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1350,13 +1350,13 @@ $echo "Test 94(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 94.O $srcdir/94.X > /dev/null 2>&1 + diff -a 94.O $srcdir/94.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 94(|)"; fi ;; 1) $echo "Test 94(|) failed: files 94.O and $srcdir/94.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 94(|) may have failed." 1>&2; - $echo The command "cmp 94.O $srcdir/94.X" failed. 1>&2 ; + $echo The command "diff -a 94.O $srcdir/94.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1367,13 +1367,13 @@ $echo "Test 94(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 94.O $srcdir/94.X > /dev/null 2>&1 + diff -a 94.O $srcdir/94.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 94(<)"; fi ;; 1) $echo "Test 94(<) failed: files 94.O and $srcdir/94.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 94(<) may have failed." 1>&2; - $echo The command "cmp 94.O $srcdir/94.X" failed. 1>&2 ; + $echo The command "diff -a 94.O $srcdir/94.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1384,13 +1384,13 @@ $echo "Test 101(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 101.O $srcdir/101.X > /dev/null 2>&1 + diff -a 101.O $srcdir/101.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 101(|)"; fi ;; 1) $echo "Test 101(|) failed: files 101.O and $srcdir/101.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 101(|) may have failed." 1>&2; - $echo The command "cmp 101.O $srcdir/101.X" failed. 1>&2 ; + $echo The command "diff -a 101.O $srcdir/101.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1401,13 +1401,13 @@ $echo "Test 101(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 101.O $srcdir/101.X > /dev/null 2>&1 + diff -a 101.O $srcdir/101.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 101(<)"; fi ;; 1) $echo "Test 101(<) failed: files 101.O and $srcdir/101.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 101(<) may have failed." 1>&2; - $echo The command "cmp 101.O $srcdir/101.X" failed. 1>&2 ; + $echo The command "diff -a 101.O $srcdir/101.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1418,13 +1418,13 @@ $echo "Test 102(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 102.O $srcdir/102.X > /dev/null 2>&1 + diff -a 102.O $srcdir/102.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 102(|)"; fi ;; 1) $echo "Test 102(|) failed: files 102.O and $srcdir/102.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 102(|) may have failed." 1>&2; - $echo The command "cmp 102.O $srcdir/102.X" failed. 1>&2 ; + $echo The command "diff -a 102.O $srcdir/102.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1435,13 +1435,13 @@ $echo "Test 102(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 102.O $srcdir/102.X > /dev/null 2>&1 + diff -a 102.O $srcdir/102.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 102(<)"; fi ;; 1) $echo "Test 102(<) failed: files 102.O and $srcdir/102.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 102(<) may have failed." 1>&2; - $echo The command "cmp 102.O $srcdir/102.X" failed. 1>&2 ; + $echo The command "diff -a 102.O $srcdir/102.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1452,13 +1452,13 @@ $echo "Test 110(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 110.O $srcdir/110.X > /dev/null 2>&1 + diff -a 110.O $srcdir/110.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 110(|)"; fi ;; 1) $echo "Test 110(|) failed: files 110.O and $srcdir/110.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 110(|) may have failed." 1>&2; - $echo The command "cmp 110.O $srcdir/110.X" failed. 1>&2 ; + $echo The command "diff -a 110.O $srcdir/110.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1469,13 +1469,13 @@ $echo "Test 110(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 110.O $srcdir/110.X > /dev/null 2>&1 + diff -a 110.O $srcdir/110.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 110(<)"; fi ;; 1) $echo "Test 110(<) failed: files 110.O and $srcdir/110.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 110(<) may have failed." 1>&2; - $echo The command "cmp 110.O $srcdir/110.X" failed. 1>&2 ; + $echo The command "diff -a 110.O $srcdir/110.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1486,13 +1486,13 @@ $echo "Test 111(|) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 111.O $srcdir/111.X > /dev/null 2>&1 + diff -a 111.O $srcdir/111.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 111(|)"; fi ;; 1) $echo "Test 111(|) failed: files 111.O and $srcdir/111.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 111(|) may have failed." 1>&2; - $echo The command "cmp 111.O $srcdir/111.X" failed. 1>&2 ; + $echo The command "diff -a 111.O $srcdir/111.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1503,13 +1503,13 @@ $echo "Test 111(<) failed: ../../src/uniq return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp 111.O $srcdir/111.X > /dev/null 2>&1 + diff -a 111.O $srcdir/111.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 111(<)"; fi ;; 1) $echo "Test 111(<) failed: files 111.O and $srcdir/111.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 111(<) may have failed." 1>&2; - $echo The command "cmp 111.O $srcdir/111.X" failed. 1>&2 ; + $echo The command "diff -a 111.O $srcdir/111.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1520,13 +1520,13 @@ $echo "Test 112(|) failed: ../../src/uniq return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 112.O $srcdir/112.X > /dev/null 2>&1 + diff -a 112.O $srcdir/112.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 112(|)"; fi ;; 1) $echo "Test 112(|) failed: files 112.O and $srcdir/112.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 112(|) may have failed." 1>&2; - $echo The command "cmp 112.O $srcdir/112.X" failed. 1>&2 ; + $echo The command "diff -a 112.O $srcdir/112.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -1537,13 +1537,13 @@ $echo "Test 112(<) failed: ../../src/uniq return code $code differs from expected value 1" 1>&2 errors=`expr $errors + 1` else - cmp 112.O $srcdir/112.X > /dev/null 2>&1 + diff -a 112.O $srcdir/112.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed 112(<)"; fi ;; 1) $echo "Test 112(<) failed: files 112.O and $srcdir/112.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test 112(<) may have failed." 1>&2; - $echo The command "cmp 112.O $srcdir/112.X" failed. 1>&2 ; + $echo The command "diff -a 112.O $srcdir/112.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi --- old/textutils-2.0/tests/wc/wc-tests Fri Jan 29 13:56:20 1999 +++ gnu/textutils-2.0/tests/wc/wc-tests Sun Oct 21 00:24:20 2001 @@ -24,13 +24,13 @@ $echo "Test a0(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a0.O $srcdir/a0.X > /dev/null 2>&1 + diff -a a0.O $srcdir/a0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a0(|)"; fi ;; 1) $echo "Test a0(|) failed: files a0.O and $srcdir/a0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a0(|) may have failed." 1>&2; - $echo The command "cmp a0.O $srcdir/a0.X" failed. 1>&2 ; + $echo The command "diff -a a0.O $srcdir/a0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -41,13 +41,13 @@ $echo "Test a0(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a0.O $srcdir/a0.X > /dev/null 2>&1 + diff -a a0.O $srcdir/a0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a0(<)"; fi ;; 1) $echo "Test a0(<) failed: files a0.O and $srcdir/a0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a0(<) may have failed." 1>&2; - $echo The command "cmp a0.O $srcdir/a0.X" failed. 1>&2 ; + $echo The command "diff -a a0.O $srcdir/a0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -58,13 +58,13 @@ $echo "Test a1(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a1.O $srcdir/a1.X > /dev/null 2>&1 + diff -a a1.O $srcdir/a1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a1(|)"; fi ;; 1) $echo "Test a1(|) failed: files a1.O and $srcdir/a1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a1(|) may have failed." 1>&2; - $echo The command "cmp a1.O $srcdir/a1.X" failed. 1>&2 ; + $echo The command "diff -a a1.O $srcdir/a1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -75,13 +75,13 @@ $echo "Test a1(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a1.O $srcdir/a1.X > /dev/null 2>&1 + diff -a a1.O $srcdir/a1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a1(<)"; fi ;; 1) $echo "Test a1(<) failed: files a1.O and $srcdir/a1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a1(<) may have failed." 1>&2; - $echo The command "cmp a1.O $srcdir/a1.X" failed. 1>&2 ; + $echo The command "diff -a a1.O $srcdir/a1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -92,13 +92,13 @@ $echo "Test a2(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a2.O $srcdir/a2.X > /dev/null 2>&1 + diff -a a2.O $srcdir/a2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a2(|)"; fi ;; 1) $echo "Test a2(|) failed: files a2.O and $srcdir/a2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a2(|) may have failed." 1>&2; - $echo The command "cmp a2.O $srcdir/a2.X" failed. 1>&2 ; + $echo The command "diff -a a2.O $srcdir/a2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -109,13 +109,13 @@ $echo "Test a2(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a2.O $srcdir/a2.X > /dev/null 2>&1 + diff -a a2.O $srcdir/a2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a2(<)"; fi ;; 1) $echo "Test a2(<) failed: files a2.O and $srcdir/a2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a2(<) may have failed." 1>&2; - $echo The command "cmp a2.O $srcdir/a2.X" failed. 1>&2 ; + $echo The command "diff -a a2.O $srcdir/a2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -126,13 +126,13 @@ $echo "Test a3(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a3.O $srcdir/a3.X > /dev/null 2>&1 + diff -a a3.O $srcdir/a3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a3(|)"; fi ;; 1) $echo "Test a3(|) failed: files a3.O and $srcdir/a3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a3(|) may have failed." 1>&2; - $echo The command "cmp a3.O $srcdir/a3.X" failed. 1>&2 ; + $echo The command "diff -a a3.O $srcdir/a3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -143,13 +143,13 @@ $echo "Test a3(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a3.O $srcdir/a3.X > /dev/null 2>&1 + diff -a a3.O $srcdir/a3.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a3(<)"; fi ;; 1) $echo "Test a3(<) failed: files a3.O and $srcdir/a3.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a3(<) may have failed." 1>&2; - $echo The command "cmp a3.O $srcdir/a3.X" failed. 1>&2 ; + $echo The command "diff -a a3.O $srcdir/a3.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -160,13 +160,13 @@ $echo "Test a4(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a4.O $srcdir/a4.X > /dev/null 2>&1 + diff -a a4.O $srcdir/a4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a4(|)"; fi ;; 1) $echo "Test a4(|) failed: files a4.O and $srcdir/a4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a4(|) may have failed." 1>&2; - $echo The command "cmp a4.O $srcdir/a4.X" failed. 1>&2 ; + $echo The command "diff -a a4.O $srcdir/a4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -177,13 +177,13 @@ $echo "Test a4(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a4.O $srcdir/a4.X > /dev/null 2>&1 + diff -a a4.O $srcdir/a4.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a4(<)"; fi ;; 1) $echo "Test a4(<) failed: files a4.O and $srcdir/a4.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a4(<) may have failed." 1>&2; - $echo The command "cmp a4.O $srcdir/a4.X" failed. 1>&2 ; + $echo The command "diff -a a4.O $srcdir/a4.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -194,13 +194,13 @@ $echo "Test a5(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a5.O $srcdir/a5.X > /dev/null 2>&1 + diff -a a5.O $srcdir/a5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a5(|)"; fi ;; 1) $echo "Test a5(|) failed: files a5.O and $srcdir/a5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a5(|) may have failed." 1>&2; - $echo The command "cmp a5.O $srcdir/a5.X" failed. 1>&2 ; + $echo The command "diff -a a5.O $srcdir/a5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -211,13 +211,13 @@ $echo "Test a5(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a5.O $srcdir/a5.X > /dev/null 2>&1 + diff -a a5.O $srcdir/a5.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a5(<)"; fi ;; 1) $echo "Test a5(<) failed: files a5.O and $srcdir/a5.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a5(<) may have failed." 1>&2; - $echo The command "cmp a5.O $srcdir/a5.X" failed. 1>&2 ; + $echo The command "diff -a a5.O $srcdir/a5.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -228,13 +228,13 @@ $echo "Test a6(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a6.O $srcdir/a6.X > /dev/null 2>&1 + diff -a a6.O $srcdir/a6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a6(|)"; fi ;; 1) $echo "Test a6(|) failed: files a6.O and $srcdir/a6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a6(|) may have failed." 1>&2; - $echo The command "cmp a6.O $srcdir/a6.X" failed. 1>&2 ; + $echo The command "diff -a a6.O $srcdir/a6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -245,13 +245,13 @@ $echo "Test a6(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a6.O $srcdir/a6.X > /dev/null 2>&1 + diff -a a6.O $srcdir/a6.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a6(<)"; fi ;; 1) $echo "Test a6(<) failed: files a6.O and $srcdir/a6.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a6(<) may have failed." 1>&2; - $echo The command "cmp a6.O $srcdir/a6.X" failed. 1>&2 ; + $echo The command "diff -a a6.O $srcdir/a6.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -262,13 +262,13 @@ $echo "Test a7(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a7.O $srcdir/a7.X > /dev/null 2>&1 + diff -a a7.O $srcdir/a7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a7(|)"; fi ;; 1) $echo "Test a7(|) failed: files a7.O and $srcdir/a7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a7(|) may have failed." 1>&2; - $echo The command "cmp a7.O $srcdir/a7.X" failed. 1>&2 ; + $echo The command "diff -a a7.O $srcdir/a7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -279,13 +279,13 @@ $echo "Test a7(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a7.O $srcdir/a7.X > /dev/null 2>&1 + diff -a a7.O $srcdir/a7.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a7(<)"; fi ;; 1) $echo "Test a7(<) failed: files a7.O and $srcdir/a7.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a7(<) may have failed." 1>&2; - $echo The command "cmp a7.O $srcdir/a7.X" failed. 1>&2 ; + $echo The command "diff -a a7.O $srcdir/a7.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -296,13 +296,13 @@ $echo "Test a8(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a8.O $srcdir/a8.X > /dev/null 2>&1 + diff -a a8.O $srcdir/a8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a8(|)"; fi ;; 1) $echo "Test a8(|) failed: files a8.O and $srcdir/a8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a8(|) may have failed." 1>&2; - $echo The command "cmp a8.O $srcdir/a8.X" failed. 1>&2 ; + $echo The command "diff -a a8.O $srcdir/a8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -313,13 +313,13 @@ $echo "Test a8(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a8.O $srcdir/a8.X > /dev/null 2>&1 + diff -a a8.O $srcdir/a8.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a8(<)"; fi ;; 1) $echo "Test a8(<) failed: files a8.O and $srcdir/a8.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a8(<) may have failed." 1>&2; - $echo The command "cmp a8.O $srcdir/a8.X" failed. 1>&2 ; + $echo The command "diff -a a8.O $srcdir/a8.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -330,13 +330,13 @@ $echo "Test a9(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a9.O $srcdir/a9.X > /dev/null 2>&1 + diff -a a9.O $srcdir/a9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a9(|)"; fi ;; 1) $echo "Test a9(|) failed: files a9.O and $srcdir/a9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a9(|) may have failed." 1>&2; - $echo The command "cmp a9.O $srcdir/a9.X" failed. 1>&2 ; + $echo The command "diff -a a9.O $srcdir/a9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -347,13 +347,13 @@ $echo "Test a9(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp a9.O $srcdir/a9.X > /dev/null 2>&1 + diff -a a9.O $srcdir/a9.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed a9(<)"; fi ;; 1) $echo "Test a9(<) failed: files a9.O and $srcdir/a9.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test a9(<) may have failed." 1>&2; - $echo The command "cmp a9.O $srcdir/a9.X" failed. 1>&2 ; + $echo The command "diff -a a9.O $srcdir/a9.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -364,13 +364,13 @@ $echo "Test b0(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b0.O $srcdir/b0.X > /dev/null 2>&1 + diff -a b0.O $srcdir/b0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b0(|)"; fi ;; 1) $echo "Test b0(|) failed: files b0.O and $srcdir/b0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b0(|) may have failed." 1>&2; - $echo The command "cmp b0.O $srcdir/b0.X" failed. 1>&2 ; + $echo The command "diff -a b0.O $srcdir/b0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -381,13 +381,13 @@ $echo "Test b0(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b0.O $srcdir/b0.X > /dev/null 2>&1 + diff -a b0.O $srcdir/b0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b0(<)"; fi ;; 1) $echo "Test b0(<) failed: files b0.O and $srcdir/b0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b0(<) may have failed." 1>&2; - $echo The command "cmp b0.O $srcdir/b0.X" failed. 1>&2 ; + $echo The command "diff -a b0.O $srcdir/b0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -398,13 +398,13 @@ $echo "Test b1(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b1.O $srcdir/b1.X > /dev/null 2>&1 + diff -a b1.O $srcdir/b1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b1(|)"; fi ;; 1) $echo "Test b1(|) failed: files b1.O and $srcdir/b1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b1(|) may have failed." 1>&2; - $echo The command "cmp b1.O $srcdir/b1.X" failed. 1>&2 ; + $echo The command "diff -a b1.O $srcdir/b1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -415,13 +415,13 @@ $echo "Test b1(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp b1.O $srcdir/b1.X > /dev/null 2>&1 + diff -a b1.O $srcdir/b1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed b1(<)"; fi ;; 1) $echo "Test b1(<) failed: files b1.O and $srcdir/b1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test b1(<) may have failed." 1>&2; - $echo The command "cmp b1.O $srcdir/b1.X" failed. 1>&2 ; + $echo The command "diff -a b1.O $srcdir/b1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -432,13 +432,13 @@ $echo "Test c0(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c0.O $srcdir/c0.X > /dev/null 2>&1 + diff -a c0.O $srcdir/c0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c0(|)"; fi ;; 1) $echo "Test c0(|) failed: files c0.O and $srcdir/c0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c0(|) may have failed." 1>&2; - $echo The command "cmp c0.O $srcdir/c0.X" failed. 1>&2 ; + $echo The command "diff -a c0.O $srcdir/c0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -449,13 +449,13 @@ $echo "Test c0(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c0.O $srcdir/c0.X > /dev/null 2>&1 + diff -a c0.O $srcdir/c0.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c0(<)"; fi ;; 1) $echo "Test c0(<) failed: files c0.O and $srcdir/c0.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c0(<) may have failed." 1>&2; - $echo The command "cmp c0.O $srcdir/c0.X" failed. 1>&2 ; + $echo The command "diff -a c0.O $srcdir/c0.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -466,13 +466,13 @@ $echo "Test c1(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c1.O $srcdir/c1.X > /dev/null 2>&1 + diff -a c1.O $srcdir/c1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c1(|)"; fi ;; 1) $echo "Test c1(|) failed: files c1.O and $srcdir/c1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c1(|) may have failed." 1>&2; - $echo The command "cmp c1.O $srcdir/c1.X" failed. 1>&2 ; + $echo The command "diff -a c1.O $srcdir/c1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -483,13 +483,13 @@ $echo "Test c1(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c1.O $srcdir/c1.X > /dev/null 2>&1 + diff -a c1.O $srcdir/c1.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c1(<)"; fi ;; 1) $echo "Test c1(<) failed: files c1.O and $srcdir/c1.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c1(<) may have failed." 1>&2; - $echo The command "cmp c1.O $srcdir/c1.X" failed. 1>&2 ; + $echo The command "diff -a c1.O $srcdir/c1.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -500,13 +500,13 @@ $echo "Test c2(|) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c2.O $srcdir/c2.X > /dev/null 2>&1 + diff -a c2.O $srcdir/c2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c2(|)"; fi ;; 1) $echo "Test c2(|) failed: files c2.O and $srcdir/c2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c2(|) may have failed." 1>&2; - $echo The command "cmp c2.O $srcdir/c2.X" failed. 1>&2 ; + $echo The command "diff -a c2.O $srcdir/c2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi @@ -517,13 +517,13 @@ $echo "Test c2(<) failed: ../../src/wc return code $code differs from expected value 0" 1>&2 errors=`expr $errors + 1` else - cmp c2.O $srcdir/c2.X > /dev/null 2>&1 + diff -a c2.O $srcdir/c2.X > /dev/null 2>&1 case $? in 0) if test "$VERBOSE" ; then $echo "passed c2(<)"; fi ;; 1) $echo "Test c2(<) failed: files c2.O and $srcdir/c2.X differ" 1>&2; errors=`expr $errors + 1` ;; 2) $echo "Test c2(<) may have failed." 1>&2; - $echo The command "cmp c2.O $srcdir/c2.X" failed. 1>&2 ; + $echo The command "diff -a c2.O $srcdir/c2.X" failed. 1>&2 ; errors=`expr $errors + 1` ;; esac fi