sys/tests.at: Add full stops after header comments.
[mLib] / sys / tests.at
1 ### -*-autotest-*-
2 ###
3 ### Test script for system features
4 ###
5 ### (c) 2009 Straylight/Edgeware
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the mLib utilities library.
11 ###
12 ### mLib is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU Library General Public License as
14 ### published by the Free Software Foundation; either version 2 of the
15 ### License, or (at your option) any later version.
16 ###
17 ### mLib is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ### GNU Library General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU Library General Public
23 ### License along with mLib; if not, write to the Free
24 ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 ### MA 02111-1307, USA.
26
27 ###--------------------------------------------------------------------------
28 ### fdpass
29
30 AT_SETUP([sys: fdpass])
31 AT_KEYWORDS([sys fdpass])
32
33 fdpass=BUILDDIR/t/fdpass.t
34
35 AT_CHECK([
36 $fdpass server sock&
37 while ! [[ -S sock ]]; do sleep 1; done
38 $fdpass client sock && wait])
39
40 AT_CLEANUP
41
42 ###--------------------------------------------------------------------------
43 ### mdup
44
45 AT_SETUP([sys: mdup])
46 AT_KEYWORDS([sys mdup])
47
48 mdup=BUILDDIR/t/mdup.t
49
50 ## Very simple cases.
51 AT_CHECK([$mdup 3:4])
52 AT_CHECK([$mdup 4:3])
53
54 ## Overlapping sources and destinations.
55 AT_CHECK([$mdup 4:3 3:5 5:6])
56
57 ## Repeated sources.
58 AT_CHECK([$mdup 3:4 3:3 3:-1])
59 AT_CHECK([$mdup 5:8 3:4 3:5 4:6])
60
61 ## Cycles.
62 AT_CHECK([$mdup 5:7 3:4 3:5 4:6 5:3])
63 AT_CHECK([$mdup 5:8 3:4 3:5 4:6 5:3])
64
65 AT_CLEANUP
66
67 ###----- That's all, folks --------------------------------------------------