tests: Tag all the tests that take more than about 1s as "slow".
[pspp] / tests / libpspp / stringi-set.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([case-insensitive string set library])
18
19 m4_define([CHECK_STRINGI_SET],
20   [AT_SETUP([case-insensitive string set -- $1])
21    AT_KEYWORDS([stringi-set $2])
22    AT_CHECK([stringi-set-test $1])
23    AT_CLEANUP])
24
25 CHECK_STRINGI_SET([insert-any-remove-any], [slow])
26 CHECK_STRINGI_SET([insert-any-remove-same], [slow])
27 CHECK_STRINGI_SET([insert-any-remove-reverse], [slow])
28 CHECK_STRINGI_SET([random-sequence], [slow])
29 CHECK_STRINGI_SET([insert-ordered])
30 CHECK_STRINGI_SET([union], [slow])
31 CHECK_STRINGI_SET([union-and-intersection], [slow])
32 CHECK_STRINGI_SET([intersect], [slow])
33 CHECK_STRINGI_SET([subtract], [slow])
34 CHECK_STRINGI_SET([swap], [slow])
35 CHECK_STRINGI_SET([clear], [slow])
36 CHECK_STRINGI_SET([clone], [slow])
37 CHECK_STRINGI_SET([destroy-null])