tests: Tag all the tests that take more than about 1s as "slow".
[pspp] / tests / data / datasheet-test.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([datasheet])
18
19 m4_define([DATASHEET_TEST],
20   [AT_SETUP([$1x$2, $3 backing rows, backing widths $4])
21    AT_KEYWORDS([datasheet slow])
22    AT_CHECK(
23      [datasheet-test --verbosity=0 --max-rows=$1 --max-columns=$2 \
24                             --backing-rows=$3 --backing-widths=$4],
25      [0], [ignore], [ignore])
26    AT_CLEANUP])
27
28 DATASHEET_TEST([3], [3], [0], [])
29 DATASHEET_TEST([3], [3], [3], [0,0,0])
30 DATASHEET_TEST([3], [3], [3], [0])
31 DATASHEET_TEST([3], [3], [3], [5])
32 DATASHEET_TEST([3], [3], [1], [0,9,0])