"Fossies" - the Fresh Open Source Software Archive 
Member "apr-1.7.0/test/abts_tests.h" (25 Jun 2018, 1824 Bytes) of package /linux/www/apr-1.7.0.tar.bz2:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "abts_tests.h":
1.6.5_vs_1.7.0.
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #ifndef APR_TEST_INCLUDES
18 #define APR_TEST_INCLUDES
19
20 #include "abts.h"
21 #include "testutil.h"
22
23 const struct testlist {
24 abts_suite *(*func)(abts_suite *suite);
25 } alltests[] = {
26 {testatomic},
27 {testdir},
28 {testdso},
29 {testdup},
30 {testencode},
31 {testenv},
32 {testescape},
33 {testfile},
34 {testfilecopy},
35 {testfileinfo},
36 {testflock},
37 {testfmt},
38 {testfnmatch},
39 {testgetopt},
40 #if 0 /* not ready yet due to API issues */
41 {testglobalmutex},
42 #endif
43 {testhash},
44 {testipsub},
45 {testlock},
46 {testcond},
47 {testlfs},
48 {testmmap},
49 {testnames},
50 {testoc},
51 {testpath},
52 {testpipe},
53 {testpoll},
54 {testpool},
55 {testproc},
56 {testprocmutex},
57 {testrand},
58 {testsleep},
59 {testshm},
60 {testsock},
61 {testsockets},
62 {testsockopt},
63 {teststr},
64 {teststrnatcmp},
65 {testtable},
66 {testtemp},
67 {testthread},
68 {testtime},
69 {testud},
70 {testuser},
71 {testvsn},
72 {testskiplist}
73 };
74
75 #endif /* APR_TEST_INCLUDES */