From 8d66b22ae2007253b34f76dc8c0fe34eb0fb5380 Mon Sep 17 00:00:00 2001 From: Arnaud Charlet Date: Wed, 23 Jun 2010 05:21:16 +0000 Subject: [PATCH] * gnat.dg/not_null.adb: Update test case. From-SVN: r161241 --- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/gnat.dg/not_null.adb | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cfaa6cf65d77..ffc1ce9feace 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-06-23 Arnaud Charlet + + * gnat.dg/not_null.adb: Update test case. + 2010-06-22 Jakub Jelinek PR c++/44619 diff --git a/gcc/testsuite/gnat.dg/not_null.adb b/gcc/testsuite/gnat.dg/not_null.adb index 7d3c63dc9cdd..3cbd86c16332 100644 --- a/gcc/testsuite/gnat.dg/not_null.adb +++ b/gcc/testsuite/gnat.dg/not_null.adb @@ -11,10 +11,8 @@ procedure not_null is begin declare pragma Warnings (Off, "*null not allowed in null-excluding objects"); - pragma Warnings (Off, """Constraint_Error"" will be raised at run time"); package Inst_2 is new GPack (null); pragma Warnings (On, "*null not allowed in null-excluding objects"); - pragma Warnings (On, """Constraint_Error"" will be raised at run time"); begin null; end;