1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
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.
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.
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/>.
17 AT_BANNER([doubly linked list (ll) library])
22 AT_CHECK([ll-test $1])
26 CHECK_LL([insert-remove])
28 CHECK_LL([swap-range])
29 CHECK_LL([remove-range])
30 CHECK_LL([remove-equal])
33 CHECK_LL([find-equal])
35 CHECK_LL([find-adjacent-equal])
36 CHECK_LL([count-range])
37 CHECK_LL([count-equal])
40 CHECK_LL([lexicographical-compare-3way])
43 CHECK_LL([permutations-no-dups])
44 CHECK_LL([permutations-with-dups])
45 CHECK_LL([merge-no-dups], [slow])
46 CHECK_LL([merge-with-dups], [slow])
47 CHECK_LL([sort-exhaustive])
48 CHECK_LL([sort-stable])
49 CHECK_LL([sort-subset])
52 CHECK_LL([sort-unique])
53 CHECK_LL([insert-ordered])