On Sun, Apr 13, 2014 at 09:24:28PM -0400, Hans-Peter Nilsson wrote: > On Fri, 11 Apr 2014, Jakub Jelinek wrote: > > > On Thu, Apr 10, 2014 at 02:18:26PM +0100, Ramana Radhakrishnan wrote: > > > I see failures from last night on aarch64-none-elf and arm-none-eabi > > > (both bare-metal) configurations even after moving up to dejagnu > > > 1.5.1. If this can't be fixed easily should we consider reverting this > > > patch in the interest of getting sane test results on bare-metal > > > targets before the release ? > > > > > > Should we also update the prereqs page to say dejagnu 1.5.1 ? > > > (http://gcc.gnu.org/install/prerequisites.html) > > > > Jason has disabled the problematic test temporarily last night, can you > > please verify bare-metal cross-testing now works? > > I just noticed that I see this error, so the problem still > exists at r209347 (seen for cris-elf). > > (The FAILs are old and provided only for context; the ERRORs are > fatal.)
Does say following patch make the problem go away? --- gcc/gcc/testsuite/g++.dg/dso/dlclose1.C 2014-04-11 10:33:22.552213377 +0200 +++ gcc/gcc/testsuite/g++.dg/dso/dlclose1.C 2014-04-14 08:27:57.311138264 +0200 @@ -1,7 +1,7 @@ // PR c++/60731 // { dg-do run { target { dlopen && disable-for-4.9 } } } // { dg-add-options dlopen } -// { dg-build-dso "dlclose1-dso.cc" } +// ( dg-build-dso "dlclose1-dso.cc" ) #include <dlfcn.h> extern "C" void abort(); Jakub