From 3eefc04663f325a1c76fae4d0a54284e71a57eb1 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Tue, 25 Aug 2020 00:28:38 +0200 Subject: [PATCH] d: Don't run all permutations for fail_compilation tests. Fail compilation tests only check for language errors from the front-end, all default option switches do nothing to alter the error. gcc/testsuite/ChangeLog: * lib/gdc-utils.exp (gdc-convert-test): Clear PERMUTE_ARGS for fail_compilation tests if not set by test file. --- gcc/testsuite/lib/gdc-utils.exp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/testsuite/lib/gdc-utils.exp b/gcc/testsuite/lib/gdc-utils.exp index 0e4f57c..37c1620 100644 --- a/gcc/testsuite/lib/gdc-utils.exp +++ b/gcc/testsuite/lib/gdc-utils.exp @@ -370,6 +370,11 @@ proc gdc-convert-test { base test } { } fail_compilation { + # Fail compilation tests only check for language errors from the + # front-end. No need to run all permutations of the default DFLAGS. + if { $PERMUTE_ARGS == $DEFAULT_DFLAGS } { + set PERMUTE_ARGS "" + } puts $fdout "// { dg-final { output-exists-not } }" } } -- 2.7.4