From: Akim Demaille Date: Tue, 15 Feb 2000 09:03:36 +0000 (+0000) Subject: * tests/torture.m4: Nuke the trailing space in defs. X-Git-Tag: autoconf-2.50~1143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=728bc5940865e4f407497d87be64a5c2d74dfc6a;p=thirdparty%2Fautoconf.git * tests/torture.m4: Nuke the trailing space in defs. --- diff --git a/ChangeLog b/ChangeLog index d0b33e701..5eea57b38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-02-11 Akim Demaille + + * tests/torture.m4: Nuke the trailing space in defs. + 2000-02-11 Akim Demaille * tests/atspecific.m4: Really added to the CVS repository. diff --git a/tests/torture.m4 b/tests/torture.m4 index 5bf95d495..4e849d20f 100644 --- a/tests/torture.m4 +++ b/tests/torture.m4 @@ -189,6 +189,8 @@ AT_DATA(expout, [[ -Dfoo=toto -Dbar=tata -Dbaz=titi -Dfubar=tutu -Da=A -Daaa=AAA -Daa=AA] ]) -AT_CHECK([cat defs], 0, expout) +# Because we strip trailing spaces in `testsuite' we can't leave one in +# expout, hence nuke the one left by AC_OUTPUT_MAKE_DEFS. +AT_CHECK([sed -e 's/ $//' defs], 0, expout) AT_CLEANUP(configure config.status config.log config.cache config.h defs)