From 7ceb1c5a0fb343e6634aa22ebf5a0582c37f2bab Mon Sep 17 00:00:00 2001 From: clanmills Date: Thu, 14 May 2020 14:13:10 +0100 Subject: [PATCH] Fix diffCheck() on NetBSD and FreeBSD (again) --- test/functions.source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functions.source b/test/functions.source index 292d9b43..975bce4b 100644 --- a/test/functions.source +++ b/test/functions.source @@ -229,7 +229,7 @@ diffCheck() #run diff and check results if [ $PLATFORM == SunOS ]; then bdiff $diffargs "$test" "$good" - elif [ $PLATFORM == freebsd -o $PLATFORM == netbsd ]; then + elif [ $PLATFORM == FreeBSD -o $PLATFORM == NetBSD ]; then diff $diffargs "$test" "$good" else diff --binary $diffargs "$test" "$good"