c6e86d47f10920457339bb58a501459496fcaa18
[pspp] / tests / libpspp / sparse-array.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 AT_BANNER([sparse array library])
17
18 m4_define([CHECK_SPARSE_ARRAY],
19   [AT_SETUP([sparse array -- $1])
20    AT_KEYWORDS([sparse-array])
21    AT_CHECK([sparse-array-test $1])
22    AT_CLEANUP])
23
24 CHECK_SPARSE_ARRAY([random-insert-delete])
25
26 AT_SETUP([sparse array -- insert and delete with strides])
27 AT_KEYWORDS([sparse-array])
28 AT_CHECK([sparse-array-test insert-delete-strides], [0], [dnl
29 1
30 2
31 4
32 16
33 64
34 4096
35 262144
36 16777216
37 3
38 5
39 17
40 67
41 4099
42 262147
43 16777259
44 ])
45 AT_CLEANUP