1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/Tests.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,59 @@
1.4 +/***********************************************************************************
1.5 + Tests.h
1.6 +
1.7 + * Copyright (c) 1997
1.8 + * Mark of the Unicorn, Inc.
1.9 + *
1.10 + * Permission to use, copy, modify, distribute and sell this software
1.11 + * and its documentation for any purpose is hereby granted without fee,
1.12 + * provided that the above copyright notice appear in all copies and
1.13 + * that both that copyright notice and this permission notice appear
1.14 + * in supporting documentation. Mark of the Unicorn makes no
1.15 + * representations about the suitability of this software for any
1.16 + * purpose. It is provided "as is" without express or implied warranty.
1.17 +
1.18 + SUMMARY: Declarations of all of the tests in the exception test suite.
1.19 +
1.20 +***********************************************************************************/
1.21 +#if ! defined (INCLUDED_MOTU_Tests)
1.22 +#define INCLUDED_MOTU_Tests 1
1.23 +
1.24 +#include "Prefix.h"
1.25 +
1.26 +void test_algobase();
1.27 +void test_algo();
1.28 +void test_list();
1.29 +void test_map();
1.30 +void test_multimap();
1.31 +void test_set();
1.32 +void test_multiset();
1.33 +void test_vector();
1.34 +void test_deque();
1.35 +void test_bit_vector();
1.36 +
1.37 +#if defined (EH_HASHED_CONTAINERS_IMPLEMENTED)
1.38 +void test_hash_map();
1.39 +void test_hash_multimap();
1.40 +void test_hash_set();
1.41 +void test_hash_multiset();
1.42 +#endif
1.43 +
1.44 +#if defined (EH_ROPE_IMPLEMENTED)
1.45 +void test_rope();
1.46 +#endif
1.47 +
1.48 +#if defined( EH_SLIST_IMPLEMENTED )
1.49 +void test_slist();
1.50 +#endif
1.51 +
1.52 +#if defined( EH_STRING_IMPLEMENTED )
1.53 +void test_string();
1.54 +#endif
1.55 +#if defined( EH_BITSET_IMPLEMENTED )
1.56 +void test_bitset();
1.57 +#endif
1.58 +#if defined( EH_VALARRAY_IMPLEMENTED )
1.59 +void test_valarray();
1.60 +#endif
1.61 +
1.62 +#endif // INCLUDED_MOTU_Tests