Delete trailing whitespace at line endings.
[pspp] / tests / libpspp / hmap.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([Hash map (hmap) library])
18
19 m4_define([CHECK_HMAP],
20   [AT_SETUP([hmap -- $1])
21    AT_CHECK([hmap-test $1])
22    AT_CLEANUP])
23
24 CHECK_HMAP([insert-any-remove-any-random-hash])
25 CHECK_HMAP([insert-any-remove-any-identity-hash])
26 CHECK_HMAP([insert-any-remove-any-constant-hash])
27 CHECK_HMAP([insert-any-remove-same-random-hash])
28 CHECK_HMAP([insert-any-remove-same-identity-hash])
29 CHECK_HMAP([insert-any-remove-same-constant-hash])
30 CHECK_HMAP([insert-any-remove-reverse-random-hash])
31 CHECK_HMAP([insert-any-remove-reverse-identity-hash])
32 CHECK_HMAP([insert-any-remove-reverse-constant-hash])
33 CHECK_HMAP([random-sequence-random-hash])
34 CHECK_HMAP([random-sequence-identity-hash])
35 CHECK_HMAP([random-sequence-constant-hash])
36 CHECK_HMAP([insert-ordered-random-hash])
37 CHECK_HMAP([insert-ordered-identity-hash])
38 CHECK_HMAP([insert-ordered-constant-hash])
39 CHECK_HMAP([moved-random-hash])
40 CHECK_HMAP([moved-identity-hash])
41 CHECK_HMAP([moved-constant-hash])
42 CHECK_HMAP([changed-random-hash])
43 CHECK_HMAP([changed-identity-hash])
44 CHECK_HMAP([changed-constant-hash])
45 CHECK_HMAP([swap-random-hash])
46 CHECK_HMAP([clear])
47 CHECK_HMAP([destroy-null])
48 CHECK_HMAP([shrink-empty])