]> gcc.gnu.org Git - gcc.git/commitdiff
repro_fail: filter out "-ignore SIGHUP" from the spawn lines
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 21 May 2013 14:43:16 +0000 (14:43 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 21 May 2013 14:43:16 +0000 (14:43 +0000)
contrib/
* repro_fail: filter out "-ignore SIGHUP" from the spawn lines

From-SVN: r199147

contrib/ChangeLog
contrib/repro_fail

index 1fd90b75a08611a6174c1f1e3fc8901236c26798..e563275dc951255ec2b1d680de398e967a8c84dd 100644 (file)
@@ -1,3 +1,7 @@
+2013-05-21  David Malcolm  <dmalcolm@redhat.com>
+
+       * repro_fail: filter out "-ignore SIGHUP" from the spawn lines
+
 2013-05-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * config-list.mk (LIST): Add -enable-obsolete for
index b28a7127b1eaeecc28247ec06f9e974025f98009..9ea79f2bccfced4217703e4077c2f53177341350 100755 (executable)
@@ -4,7 +4,7 @@
 #
 # Contributed by Diego Novillo <dnovillo@google.com>
 #
-# Copyright (C) 2011, 2012 Free Software Foundation, Inc.
+# Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
 #
 # This file is part of GCC.
 #
@@ -56,7 +56,9 @@ logf="$2"
 shift 2
 
 # Find the commands in LOGF that reference PATTERN.
-lines=$(grep -E "^spawn .*$pattern" $logf | sed -e 's/^spawn //')
+lines=$(grep -E "^spawn .*$pattern" $logf \
+        | sed -e 's/^spawn -ignore SIGHUP //' \
+        | sed -e 's/^spawn //')
 if [ -z "$lines" ] ; then
     echo "Could not find a spawn command for pattern $pattern"
     exit 1
This page took 0.065942 seconds and 5 git commands to generate.