From f8b529aa0a7a54c178fdc13b2033ee14a4b69c73 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Tue, 24 Jul 2001 11:06:50 -0400 Subject: [PATCH] * g++.dg/dg.exp: Run tests from subdirectories other than "special". From-SVN: r44300 --- gcc/testsuite/g++.dg/dg.exp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/g++.dg/dg.exp b/gcc/testsuite/g++.dg/dg.exp index d7f4e994c9f..6667d672cfa 100644 --- a/gcc/testsuite/g++.dg/dg.exp +++ b/gcc/testsuite/g++.dg/dg.exp @@ -28,9 +28,13 @@ if ![info exists DEFAULT_CXXFLAGS] then { # Initialize `dg'. dg-init +# Gather a list of all tests, excluding those in special/; those are handled +# well, specially. +set all [lsort [find $srcdir/$subdir *.C]] +set tests [prune $all $srcdir/$subdir/special/*] + # Main loop. -dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[CS\]]] \ - "" $DEFAULT_CXXFLAGS +dg-runtest $tests "" $DEFAULT_CXXFLAGS # All done. dg-finish -- 2.30.2