public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/53222] New: dejagnu trims leading whitespace
@ 2012-05-03 22:39 manu at gcc dot gnu.org
  2013-04-19  7:29 ` [Bug testsuite/53222] " skannan at redhat dot com
  2013-04-19  7:51 ` manu at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: manu at gcc dot gnu.org @ 2012-05-03 22:39 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53222

             Bug #: 53222
           Summary: dejagnu trims leading whitespace
    Classification: Unclassified
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: manu@gcc.gnu.org


This patch should still allow us to prune all caret diagnostics, since they
always start with whitespace:

Index: libstdc++-v3/testsuite/lib/prune.exp
===================================================================
--- libstdc++-v3/testsuite/lib/prune.exp        (revision 187039)
+++ libstdc++-v3/testsuite/lib/prune.exp        (working copy)
@@ -34,11 +34,11 @@ proc libstdc++-dg-prune { system text } 

 #    send_user "Before:$text\n"

     # Ignore caret diagnostics. Unfortunately dejaGNU trims leading
     # spaces, so one cannot rely on them being present.
-    regsub -all "(^|\n)\[^\n\]+\n *\\^\n" $text "\n" text
+    regsub -all "(^ |\n )\[^\n\]+\n *\\^\n" $text "\n" text

     # Cygwin warns about -ffunction-sections
     regsub -all "(^|\n)\[^\n\]*: -ffunction-sections may affect debugging on
some targets\[^\n\]*" $text "" text

     # Remove parts of warnings that refer to location of previous

However, DejaGNU seems to trim leading whitespace:

/home/manuel/test2/src/libstdc++-v3/testsuite/17_intro/using_namespace_std_tr1_neg.cc:66:27:
error: expected namespace-name before ';' token^M
   using namespace std::tr1;  // { dg-error "is not a namespace-name" }^M
                           ^^M

PASS: 17_intro/using_namespace_std_tr1_neg.cc  (test for errors, line 66)
PASS: 17_intro/using_namespace_std_tr1_neg.cc  (test for errors, line 66)
FAIL: 17_intro/using_namespace_std_tr1_neg.cc (test for excess errors)
Excess errors:
using namespace std::tr1;  // { dg-error "is not a namespace-name" }
                        ^

This is unfortunate, because it makes quite hard to match any arbitrary output.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-04-19  7:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-03 22:39 [Bug testsuite/53222] New: dejagnu trims leading whitespace manu at gcc dot gnu.org
2013-04-19  7:29 ` [Bug testsuite/53222] " skannan at redhat dot com
2013-04-19  7:51 ` manu at gcc dot gnu.org

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).