os/ossrv/genericopenlibs/cppstdlib/test/runtime/src/unexpected_handler_test.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericopenlibs/cppstdlib/test/runtime/src/unexpected_handler_test.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,58 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Name        : unexpected_handler_test.cpp
    1.18 +// Part of     : standard c++ tests.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <exception>
    1.23 +#include "test_decls.h"
    1.24 +#include <cstddef>
    1.25 +#include <cstdlib>
    1.26 +
    1.27 +void foo()
    1.28 +{
    1.29 +/*
    1.30 + * The handler is invoked so terminate
    1.31 + **/
    1.32 +	CPP_TESTS_ASSERT_ALLWAYS(1);
    1.33 +	abort();
    1.34 +}
    1.35 +
    1.36 +void bar() throw()
    1.37 +{
    1.38 +	throw int(0);
    1.39 +}
    1.40 +
    1.41 +int main()
    1.42 +{
    1.43 +	std::unexpected_handler hu_old,hu_new;
    1.44 +//	std::terminate_handler ht_old,ht_new;
    1.45 +	
    1.46 +	hu_new = (std::unexpected_handler)&foo;
    1.47 +	hu_old = std::set_unexpected(hu_new);
    1.48 +	hu_old = hu_old;//get rid of the warning
    1.49 +	
    1.50 +//	ht_new = (std::terminate_handler)&foo;
    1.51 +//	ht_old = std::set_terminate(ht_new);
    1.52 +	try {
    1.53 +	bar();
    1.54 +	}catch(...){}
    1.55 +	/*
    1.56 +	 * Failure case. If we reach here, the unexpected_handler wasn't 
    1.57 +	 * invoked.
    1.58 +	 **/
    1.59 +	CPP_TESTS_ASSERT_ALLWAYS(0);
    1.60 +	return 0;
    1.61 +}