Add.
[autobuild.git] / tst-autobuild
1 #!/bin/sh
2
3 # Copyright (C) 2004 Simon Josefsson.
4 #
5 # This file is part of Autobuild.
6 #
7 # Autobuild is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # Autobuild is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Autobuild; see the file COPYING.  If not, write to the
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 # MA 02111-1307, USA.
21
22 TMP="tmp.$$"
23 srcdir=${srcdir:-.}
24
25 filename=`(cd $srcdir; perl $srcdir/autobuild --dry-run --verbose examples/libidn.txt) 2> $TMP`
26 err=$?
27
28 if test "$err" != "0"; then
29     echo Running autobuild failed: $err
30     rm -f $TMP
31     exit 1
32 fi
33
34 if cmp $TMP $srcdir/examples/libidn.expect; then
35     :
36 else
37     echo File comparison failed
38     rm -f $TMP
39     exit 1
40 fi
41
42 rm -f $TMP
43 exit 0