sys/tests.at: Use the correct name for the `mdup' test program.
[mLib] / sys / tests.at
CommitLineData
7cf5c72a
MW
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### mdup
29
30AT_SETUP([sys: mdup])
31AT_KEYWORDS([sys mdup])
32
e54226a7 33mdup=BUILDDIR/t/mdup.t
7cf5c72a
MW
34
35## Very simple cases.
36$mdup 3:4
37$mdup 4:3
38
39## Overlapping sources and destinations
40$mdup 4:3 3:5 5:6
41
42## Repeated sources
43$mdup 3:4 3:3 3:-1
44$mdup 5:8 3:4 3:5 4:6
45
46## Cycles
47$mdup 5:7 3:4 3:5 4:6 5:3
48$mdup 5:8 3:4 3:5 4:6 5:3
49
50AT_CLEANUP
51
52###----- That's all, folks --------------------------------------------------