From: Jim Meyering Date: Tue, 22 Mar 2011 05:07:35 +0000 (+0100) Subject: tests: exercise tests new "==" operator X-Git-Tag: v8.11~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3f6b33e4b31667b9b43708730f6f75f25e8ff57;p=thirdparty%2Fcoreutils.git tests: exercise tests new "==" operator * tests/misc/test: Exercise the new operator. * NEWS (Changes in behavior): Mention it. --- diff --git a/NEWS b/NEWS index 9ceaa06593..b2674c0e92 100644 --- a/NEWS +++ b/NEWS @@ -26,6 +26,10 @@ GNU coreutils NEWS -*- outline -*- which will discard any cache associated with the files, or processed portion thereof. +** Changes in behavior + + test now accepts "==" as a synonym for "=" + * Noteworthy changes in release 8.10 (2011-02-04) [stable] diff --git a/tests/misc/test b/tests/misc/test index 396660b999..f515b7f326 100755 --- a/tests/misc/test +++ b/tests/misc/test @@ -132,6 +132,8 @@ my @Tests = ['streq-1', qw(t = t)], ['streq-2', qw(t = f), {EXIT=>1}], + ['streqeq-1', qw(t == t)], + ['streqeq-2', qw(t == f), {EXIT=>1}], ['streq-3', qw(! = !)], ['streq-4', qw(= = =)], ['streq-5', "'(' = '('"],