public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-9802] testsuite: Fix up error on gcov1.d
@ 2024-04-05  9:06 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2024-04-05  9:06 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:effd947fcc2bbe0dfbc7d470eab4bc65bd9b46c8

commit r14-9802-geffd947fcc2bbe0dfbc7d470eab4bc65bd9b46c8
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri Apr 5 11:05:01 2024 +0200

    testsuite: Fix up error on gcov1.d
    
    On Fri, Feb 23, 2024 at 12:18:00PM +0100, Jørgen Kvalsvik wrote:
    > This is a mostly straight port from the gcov-19.c tests from the C test
    > suite. The only notable differences from C to D are that D flips the
    > true/false outcomes for loop headers, and the D front end ties loop and
    > ternary conditions to slightly different locus.
    >
    > The test for >64 conditions warning is disabled as it either needs
    > support from the testing framework or a something similar to #pragma GCC
    > diagnostic push to not cause a test failure from detecting a warning.
    >
    > gcc/testsuite/ChangeLog:
    >
    >       * gdc.dg/gcov.exp: New test.
    >       * gdc.dg/gcov1.d: New test.
    
    Unfortunately, this doesn't work.
    I see
    PASS: gdc.dg/gcov1.d   execution test
    ERROR: (DejaGnu) proc "run-gcov conditions { --conditions gcov1.d }" does not exist.
    The error code is TCL LOOKUP COMMAND run-gcov
    The info on the error is:
    invalid command name "run-gcov"
        while executing
    "::tcl_unknown run-gcov conditions { --conditions gcov1.d }"
        ("uplevel" body line 1)
        invoked from within
    "uplevel 1 ::tcl_unknown $args"
    ERROR: gdc.dg/gcov1.d  : error executing dg-final: invalid command name "run-gcov"
    both on x86_64-linux and i686-linux.
    The problem is that the test hasn't been added to a new directory, but
    to a directory already covered by a different *.exp file - dg.exp.
    Now, usually either one has a test directory like gcc.misc-tests where
    there are many *.exp files but each *.exp file globs for its own tests,
    or there is one *.exp per directory and covers everything in there.
    By having both dg.exp and gcov.exp in the same directory with dg.exp
    covering all *.d files in there and gcov gcov*.d in there, the gcov*.d
    tests are tested twice, once using the dg.exp driver and once using gcov.exp
    driver.  With the latter, they do work properly, with the former they don't
    because gcov.exp lib file isn't loaded and so run-gcov isn't available.
    
    The following patch fixes that similarly how g++.dg/modules/modules.exp,
    gcc.target/s390/s390.exp or gcc.target/i386/i386.exp deal with that,
    by pruning some tests based on glob patterns from the list.
    
    2024-04-05  Jakub Jelinek  <jakub@redhat.com>
    
            * gdc.dg/dg.exp: Prune gcov*.d from the list of tests to run.
            * gdc.dg/gcov.exp: Update copyright years.

Diff:
---
 gcc/testsuite/gdc.dg/dg.exp   | 3 ++-
 gcc/testsuite/gdc.dg/gcov.exp | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/testsuite/gdc.dg/dg.exp b/gcc/testsuite/gdc.dg/dg.exp
index 786b5359b85..50527c5372f 100644
--- a/gcc/testsuite/gdc.dg/dg.exp
+++ b/gcc/testsuite/gdc.dg/dg.exp
@@ -30,7 +30,8 @@ dg-init
 
 # Main loop.
 gdc-dg-runtest [lsort \
-       [glob -nocomplain $srcdir/$subdir/*.d ] ] "" $DEFAULT_DFLAGS
+       [prune [glob -nocomplain $srcdir/$subdir/*.d ] \
+	      $srcdir/$subdir/gcov*.d ] ] "" $DEFAULT_DFLAGS
 
 # All done.
 dg-finish
diff --git a/gcc/testsuite/gdc.dg/gcov.exp b/gcc/testsuite/gdc.dg/gcov.exp
index 4218771b208..ea70ea85f28 100644
--- a/gcc/testsuite/gdc.dg/gcov.exp
+++ b/gcc/testsuite/gdc.dg/gcov.exp
@@ -1,4 +1,4 @@
-#   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+#   Copyright (C) 1997-2024 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-05  9:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-05  9:06 [gcc r14-9802] testsuite: Fix up error on gcov1.d Jakub Jelinek

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