1321369Sdim/* Licensed to the Apache Software Foundation (ASF) under one or more
2259698Sdim * contributor license agreements.  See the NOTICE file distributed with
3353358Sdim * this work for additional information regarding copyright ownership.
4353358Sdim * The ASF licenses this file to You under the Apache License, Version 2.0
5353358Sdim * (the "License"); you may not use this file except in compliance with
6259698Sdim * the License.  You may obtain a copy of the License at
7259698Sdim *
8259698Sdim *     http://www.apache.org/licenses/LICENSE-2.0
9280031Sdim *
10280031Sdim * Unless required by applicable law or agreed to in writing, software
11259698Sdim * distributed under the License is distributed on an "AS IS" BASIS,
12276479Sdim * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13259698Sdim * See the License for the specific language governing permissions and
14259698Sdim * limitations under the License.
15321369Sdim */
16327952Sdim
17321369Sdim#ifndef APR_TEST_INCLUDES
18321369Sdim#define APR_TEST_INCLUDES
19321369Sdim
20321369Sdim#include "abts.h"
21259698Sdim#include "testutil.h"
22259698Sdim
23259698Sdimconst struct testlist {
24259698Sdim    abts_suite *(*func)(abts_suite *suite);
25259698Sdim} alltests[] = {
26259698Sdim    {teststrmatch},
27276479Sdim    {testuri},
28321369Sdim    {testuuid},
29321369Sdim    {testbuckets},
30259698Sdim    {testpass},
31341825Sdim    {testmd4},
32314564Sdim    {testmd5},
33314564Sdim    {testcrypto},
34314564Sdim    {testldap},
35314564Sdim    {testdbd},
36314564Sdim    {testdate},
37314564Sdim    {testmemcache},
38314564Sdim    {testxml},
39314564Sdim    {testxlate},
40314564Sdim    {testrmm},
41314564Sdim    {testdbm},
42314564Sdim    {testqueue},
43314564Sdim    {testreslist}
44314564Sdim};
45314564Sdim
46314564Sdim#endif /* APR_TEST_INCLUDES */
47314564Sdim