Enable the show value labels feature
[pspp] / tests / libpspp / hmapx.at
1 AT_BANNER([Hash map of pointers (hmapx) library])
2
3 m4_define([CHECK_HMAPX],
4   [AT_SETUP([hmapx -- $1])
5    AT_CHECK([hmapx-test $1])
6    AT_CLEANUP])
7
8 CHECK_HMAPX([insert-any-remove-any-random-hash])
9 CHECK_HMAPX([insert-any-remove-any-identity-hash])
10 CHECK_HMAPX([insert-any-remove-any-constant-hash])
11 CHECK_HMAPX([insert-any-remove-same-random-hash])
12 CHECK_HMAPX([insert-any-remove-same-identity-hash])
13 CHECK_HMAPX([insert-any-remove-same-constant-hash])
14 CHECK_HMAPX([insert-any-remove-reverse-random-hash])
15 CHECK_HMAPX([insert-any-remove-reverse-identity-hash])
16 CHECK_HMAPX([insert-any-remove-reverse-constant-hash])
17 CHECK_HMAPX([random-sequence-random-hash])
18 CHECK_HMAPX([random-sequence-identity-hash])
19 CHECK_HMAPX([random-sequence-constant-hash])
20 CHECK_HMAPX([insert-ordered-random-hash])
21 CHECK_HMAPX([insert-ordered-identity-hash])
22 CHECK_HMAPX([insert-ordered-constant-hash])
23 CHECK_HMAPX([moved-random-hash])
24 CHECK_HMAPX([moved-identity-hash])
25 CHECK_HMAPX([moved-constant-hash])
26 CHECK_HMAPX([changed-random-hash])
27 CHECK_HMAPX([changed-identity-hash])
28 CHECK_HMAPX([changed-constant-hash])
29 CHECK_HMAPX([change-random-hash])
30 CHECK_HMAPX([change-identity-hash])
31 CHECK_HMAPX([change-constant-hash])
32 CHECK_HMAPX([swap-random-hash])
33 CHECK_HMAPX([clear])
34 CHECK_HMAPX([destroy-null])
35 CHECK_HMAPX([shrink-empty])