From a8eb89699993bbcb4d7f278ab8fece54f64e1334 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 19 Jun 2008 07:02:20 -0600 Subject: [PATCH] Add comment explaining recent patch. * lib/autotest/general.m4 (AT_INIT) : Explain choice of * vs. ? globbing. Signed-off-by: Eric Blake --- ChangeLog | 6 ++++++ lib/autotest/general.m4 | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3e728931..065a75bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-19 Eric Blake + + Add comment explaining recent patch. + * lib/autotest/general.m4 (AT_INIT) : Explain choice + of * vs. ? globbing. + 2008-06-19 Ralf Wildenhues * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not warn when not diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 3c983fc9..90fce9fb 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -1166,6 +1166,7 @@ done # Wrap up the test suite with summary statistics. cd "$at_helper_dir" +# Use ?..???? when the list must remain sorted, the faster * otherwise. at_pass_list=`for f in */pass; do echo $f; done | sed '/\*/d; s,/pass,,'` at_skip_list=`for f in */skip; do echo $f; done | sed '/\*/d; s,/skip,,'` at_xfail_list=`for f in */xfail; do echo $f; done | sed '/\*/d; s,/xfail,,'`