OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1997-2012, International Business Machines Corporation and | 3 * Copyright (c) 1997-2014, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 | 6 |
7 | 7 |
8 #ifndef MULTITHREADTEST_H | 8 #ifndef MULTITHREADTEST_H |
9 #define MULTITHREADTEST_H | 9 #define MULTITHREADTEST_H |
10 | 10 |
11 #include "intltest.h" | 11 #include "intltest.h" |
12 #include "mutex.h" | 12 #include "mutex.h" |
13 | 13 |
(...skipping 23 matching lines...) Expand all Loading... |
37 /** | 37 /** |
38 * test that mutexes work | 38 * test that mutexes work |
39 **/ | 39 **/ |
40 void TestMutex(void); | 40 void TestMutex(void); |
41 #if !UCONFIG_NO_FORMATTING | 41 #if !UCONFIG_NO_FORMATTING |
42 /** | 42 /** |
43 * test that intl functions work in a multithreaded context | 43 * test that intl functions work in a multithreaded context |
44 **/ | 44 **/ |
45 void TestThreadedIntl(void); | 45 void TestThreadedIntl(void); |
46 #endif | 46 #endif |
47 void TestCollators(void); | 47 void TestCollators(void); |
48 void TestString(); | 48 void TestString(); |
| 49 void TestAnyTranslit(); |
| 50 void TestConditionVariables(); |
| 51 void TestUnifiedCache(); |
| 52 |
49 }; | 53 }; |
50 | 54 |
51 #endif | 55 #endif |
52 | 56 |
OLD | NEW |