From: Martin v. Loewis Date: Fri, 10 Jul 1998 21:45:18 +0000 (+0000) Subject: singleton.C: Return error value instead of taking SIGSEGV. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1ee890de5673ef80654b15cebe2ec2b62de4ae7;p=platform%2Fupstream%2Fgcc.git singleton.C: Return error value instead of taking SIGSEGV. * g++.other/singleton.C: Return error value instead of taking SIGSEGV. From-SVN: r21054 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9fe92bd..d48ad94 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Fri Jul 10 23:43:33 1998 Martin von Loewis + + * g++.other/singleton.C: Return error value instead of taking + SIGSEGV. + Fri Jul 10 10:02:03 1998 Klaus-Georg Adams * g++.other/singleton.C: New test. Warning is under dispute. diff --git a/gcc/testsuite/g++.old-deja/g++.other/singleton.C b/gcc/testsuite/g++.old-deja/g++.other/singleton.C index 32722c3..fda64fb 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/singleton.C +++ b/gcc/testsuite/g++.old-deja/g++.other/singleton.C @@ -1,10 +1,12 @@ +// execution test - re-initialization of statics XFAIL *-*-* // This tests two things: -// 1. there is an annoying warning. singleton.C:27: warning: `class -// singleton' only defines private constructors and has no friends egcs -// fails to see that there is a public static accessor function. +// 1. there is an annoying warning. +// singleton.C:26: warning: `class singleton' only defines private constructors +and has no friends +// egcs fails to see that there is a public static accessor function. // 2. the program crashes, because apparently the static variable s in // singleton::instance() is considered constructed although the ctor -// exited via an exception. +// exited via an exception. (crash changed to non-zero return here) class singleton { public: @@ -12,19 +14,18 @@ public: static singleton s; return s; } - ~singleton() { delete sigsegv; } - int crash() { return *sigsegv; } + int check() {return initialized;} private: - singleton() : sigsegv(0) { + singleton() : initialized(1) { if ( counter++ == 0 ) throw "just for the heck of it"; - sigsegv = new int(0); + initialized = 2; } singleton( const singleton& rhs ); void operator=( const singleton& rhs ); - int* sigsegv; + int initialized; static int counter; -}; +}; // gets bogus error - class is not useless XFAIL *-*-* int singleton::counter; @@ -32,7 +33,8 @@ int main() { while (1) { try { - return singleton::instance().crash(); + return singleton::instance().ok()-2; } catch (...) { } } } +