7b7507296fcb63d4fe485732e1e57610b9197a87
[pspp] / tests / libpspp / llx.at
1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
3 dnl 
4 dnl This program is free software: you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation, either version 3 of the License, or
7 dnl (at your option) any later version.
8 dnl 
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl 
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 dnl
17 AT_BANNER([doubly linked list of pointers (llx) library])
18
19 m4_define([CHECK_LLX],
20   [AT_SETUP([llx -- $1])
21    AT_CHECK([llx-test $1])
22    AT_CLEANUP])
23
24 CHECK_LLX([push-pop])
25 CHECK_LLX([insert-remove])
26 CHECK_LLX([swap])
27 CHECK_LLX([swap-range])
28 CHECK_LLX([remove-range])
29 CHECK_LLX([remove-equal])
30 CHECK_LLX([remove-if])
31 CHECK_LLX([find-equal])
32 CHECK_LLX([find])
33 CHECK_LLX([find-if])
34 CHECK_LLX([find-adjacent-equal])
35 CHECK_LLX([count-range])
36 CHECK_LLX([count-equal])
37 CHECK_LLX([count-if])
38 CHECK_LLX([min-max])
39 CHECK_LLX([lexicographical-compare-3way])
40 CHECK_LLX([apply])
41 CHECK_LLX([destroy])
42 CHECK_LLX([reverse])
43 CHECK_LLX([permutations-no-dups])
44 CHECK_LLX([permutations-with-dups])
45 CHECK_LLX([merge-no-dups])
46 CHECK_LLX([merge-with-dups])
47 CHECK_LLX([sort-exhaustive])
48 CHECK_LLX([sort-stable])
49 CHECK_LLX([sort-subset])
50 CHECK_LLX([sort-big])
51 CHECK_LLX([unique])
52 CHECK_LLX([sort-unique])
53 CHECK_LLX([insert-ordered])
54 CHECK_LLX([partition])
55 CHECK_LLX([allocation-failure])