public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Quentin Neill <quentin.neill.gnu@gmail.com>
To: Mike Stump <mikestump@comcast.net>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: PATCH: Add capability to contrib/compare_tests to handle directories
Date: Tue, 14 Feb 2012 16:41:00 -0000	[thread overview]
Message-ID: <CAEhygDrTfvQiHmqS=SaxEDFZ3D-r6oDrRCeszGX8pkTZ6hHRYA@mail.gmail.com> (raw)
In-Reply-To: <7F0115C8-1F88-4567-81A9-C8AEA5CF1B59@comcast.net>

On Sat, Feb 11, 2012 at 8:13 AM, Mike Stump <mikestump@comcast.net> wrote:
> On Nov 4, 2011, at 8:23 PM, Quentin Neill wrote:
>> My scenario about "ANY test results changed" is what I added with -strict.
>> This patch concatenates the common .sum files before comparing.
>
> So, how exactly does this work for you:
>
> +       ( for fname in `cat $lst5`; do cat $1/$fname; done ) >$sum1
> +       ( for fname in `cat $lst5`; do cat $2/$fname; done ) >$sum2
> +       echo "## ${CONFIG_SHELL-/bin/sh} $0 $strict $sum1 $sum2"
> +       ${CONFIG_SHELL-/bin/sh} $0 $strict $sum1 $sum2
>
> sum1 and sum2 appear to be variables that aren't set.

Hi Mike,

Thanks for the fix.  This seemed familiar, and upon review it looks
like I never committed this fix:
http://gcc.gnu.org/ml/gcc-patches/2011-11/msg01194.html


Do you prefer this patch with my original intent (declaring sum1/sum2
with other tmps and removing the trap on line 52):

--- a/contrib/compare_tests
+++ b/contrib/compare_tests
@@ -43,7 +43,9 @@ lst2=/tmp/$tool-lst2.$$
 lst3=/tmp/$tool-lst3.$$
 lst4=/tmp/$tool-lst4.$$
 lst5=/tmp/$tool-lst5.$$
-tmps="$tmp1 $tmp2 $now_s $before_s $lst1 $lst2 $lst3 $lst4 $lst5"
+sum1=/tmp/$tool-sum1.$$
+sum2=/tmp/$tool-sum2.$$
+tmps="$tmp1 $tmp2 $now_s $before_s $lst1 $lst2 $lst3 $lst4 $lst5 $sum1 $sum2"


 [ "$1" = "-strict" ] && strict=$1 && shift
 [ "$1" = "-?" ] && usage
@@ -60,8 +62,8 @@ if [ -d "$1" -a -d "$2" ] ; then
    echo "## Dir2=$2: `cat $lst2 | wc -l` sum files"
    echo
    # remove leading directory components to compare
-   sed -e "s|^$1/||" $lst1 | sort >$lst3
-   sed -e "s|^$2/||" $lst2 | sort >$lst4
+   sed -e "s|^$1[/]*||" $lst1 | sort >$lst3
+   sed -e "s|^$2[/]*||" $lst2 | sort >$lst4
    comm -23 $lst3 $lst4 >$lst5
    if [ -s $lst5 ] ; then
        echo "# Extra sum files in Dir1=$1"
@@ -83,14 +85,11 @@ if [ -d "$1" -a -d "$2" ] ; then
        exit $exit_status
    fi
    cmnsums=`cat $lst5 | wc -l`
-   sum1="/tmp/$tool-sum-1"
-   sum2="/tmp/$tool-sum-2"
    echo "# Comparing $cmnsums common sum files"
    ( for fname in `cat $lst5`; do cat $1/$fname; done ) >$sum1
    ( for fname in `cat $lst5`; do cat $2/$fname; done ) >$sum2
    echo "## ${CONFIG_SHELL-/bin/sh} $0 $strict $sum1 $sum2"
    ${CONFIG_SHELL-/bin/sh} $0 $strict $sum1 $sum2
-   rm -f $sum1 $sum2
    ret=$?
    if [ $ret -ne 0 ]; then
        exit_status=`expr $exit_status + 1`



Or would you prefer this minimal fix (to remove trailing directory slashes)?

@@ -60,8 +60,8 @@ if [ -d "$1" -a -d "$2" ] ; then
    echo "## Dir2=$2: `cat $lst2 | wc -l` sum files"
    echo
    # remove leading directory components to compare
-   sed -e "s|^$1/||" $lst1 | sort >$lst3
-   sed -e "s|^$2/||" $lst2 | sort >$lst4
+   sed -e "s|^$1[/]*||" $lst1 | sort >$lst3
+   sed -e "s|^$2[/]*||" $lst2 | sort >$lst4
    comm -23 $lst3 $lst4 >$lst5
    if [ -s $lst5 ] ; then
        echo "# Extra sum files in Dir1=$1"


And if so, okay to commit?
-- 
Quentin

  reply	other threads:[~2012-02-14 16:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-07 17:29 Quentin Neill
2011-10-04 21:45 ` Quentin Neill
2011-10-04 22:08   ` Mike Stump
2011-11-02 17:45     ` Quentin Neill
2011-11-05  4:33       ` Quentin Neill
2011-11-05 21:39         ` Mike Stump
2011-11-08 16:11           ` Quentin Neill
2011-11-08 16:48             ` Mike Stump
2012-02-11 14:15         ` Mike Stump
2012-02-14 16:41           ` Quentin Neill [this message]
2012-02-14 16:47             ` Quentin Neill
2012-02-15  7:23             ` Mike Stump
     [not found]               ` <CAEhygDrP-ywsm8ZZ79YF6modV-GzLtpRpkT9DRC507QLjnSb8Q@mail.gmail.com>
2012-02-16 15:34                 ` Quentin Neill

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAEhygDrTfvQiHmqS=SaxEDFZ3D-r6oDrRCeszGX8pkTZ6hHRYA@mail.gmail.com' \
    --to=quentin.neill.gnu@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=mikestump@comcast.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).