| OLD | NEW |
| 1 /******************************************************************** | 1 /******************************************************************** |
| 2 * COPYRIGHT: | 2 * COPYRIGHT: |
| 3 * Copyright (c) 1997-2014, International Business Machines Corporation and | 3 * Copyright (c) 1997-2015, 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 28 matching lines...) Expand all Loading... |
| 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(); | 49 void TestAnyTranslit(); |
| 50 void TestConditionVariables(); | 50 void TestConditionVariables(); |
| 51 void TestUnifiedCache(); | 51 void TestUnifiedCache(); |
| 52 void TestBreakTranslit(); |
| 52 | 53 |
| 53 }; | 54 }; |
| 54 | 55 |
| 55 #endif | 56 #endif |
| 56 | 57 |
| OLD | NEW |