summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gomp
diff options
context:
space:
mode:
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-17 23:23:11 +0000
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-17 23:23:11 +0000
commit7d7a504353f8250d65f121a6229b8c726ae26425 (patch)
tree49864ad0d4ee80db68e3bc2a074c839cf7866dea /gcc/testsuite/g++.dg/gomp
parent7b64e03cdc2be61f271794e45338b3981ff93d29 (diff)
downloadgcc-7d7a504353f8250d65f121a6229b8c726ae26425.tar.gz
PR testsuite/25241
* g++.old-deja/g++.brendan/crash7.C: Remove "error" or "warning" from message for dg-error/dg-warning. * g++.old-deja/g++.jason/crash11.C: Ditto. * g++.old-deja/g++.oliva/template1.C: Ditto. * g++.old-deja/g++.benjamin/tem03.C: Ditto. * g++.dg/rtti/no-rtti.C: Ditto. * g++.dg/cpp/pedantic-errors.C: Ditto. * g++.dg/cpp/string-2.C: Ditto. * g++.dg/ext/fpreg1.C: Ditto. * g++.dg/ext/altivec-types-1.C: Ditto. * g++.dg/warn/write-strings-default.C: Ditto. * g++.dg/warn/Wvla-2.C: Ditto. * g++.dg/warn/register-var-1.C: Ditto. * g++.dg/warn/deprecated-3.C: Ditto. * g++.dg/warn/pr30551-2.C: Ditto. * g++.dg/warn/overflow-warn-1.C: Ditto. * g++.dg/warn/pr30551.C: Ditto. * g++.dg/warn/pointer-integer-comparison.C: Ditto. * g++.dg/warn/pr12242.C: Ditto. * g++.dg/warn/write-strings.C: Ditto. * g++.dg/warn/overflow-warn-3.C: Ditto. * g++.dg/warn/overflow-warn-4.C: Ditto. * g++.dg/warn/overflow-warn-6.C: Ditto. * g++.dg/parse/crash43.C: Ditto. * g++.dg/parse/crash44.C: Ditto. * g++.dg/parse/offsetof8.C: Ditto. * g++.dg/gomp/pr35158.C: Ditto. * g++.dg/template/crash81.C: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140437 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.dg/gomp')
-rw-r--r--gcc/testsuite/g++.dg/gomp/pr35158.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/gomp/pr35158.C b/gcc/testsuite/g++.dg/gomp/pr35158.C
index 933eba1ab2c..9577cd236fc 100644
--- a/gcc/testsuite/g++.dg/gomp/pr35158.C
+++ b/gcc/testsuite/g++.dg/gomp/pr35158.C
@@ -5,7 +5,7 @@
int main(int argc, char *argv[])
{
#pragma omp parallel for
- for (int i(0) ; // { dg-error "error: parenthesized initialization is not allowed in OpenMP 'for' loop" }
+ for (int i(0) ; // { dg-error "parenthesized initialization is not allowed in OpenMP 'for' loop" }
i < 10 ;
i++)
;