guile: Fix dependencies to be parallel-safe.
[gnutls.git] / tests / cert-tests / pem-decoding
blob715488e2ec116abf2f56d48b05a32b326acc243d
1 #!/bin/sh
3 # Copyright (C) 2006-2008, 2010, 2012 Free Software Foundation, Inc.
5 # Author: Simon Josefsson
7 # This file is part of GnuTLS.
9 # GnuTLS is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by the
11 # Free Software Foundation; either version 3 of the License, or (at
12 # your option) any later version.
14 # GnuTLS is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with GnuTLS; if not, write to the Free Software Foundation,
21 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 set -e
25 srcdir=${srcdir:-.}
26 CERTTOOL=${CERTTOOL:-../../src/certtool$EXEEXT}
28 #check whether "funny" spaces can be interpreted
29 $CERTTOOL --certificate-info --infile $srcdir/funny-spacing.pem >/dev/null 2>&1
30 rc=$?
32 # We're done.
33 if test "$rc" != "0"; then
34 exit $rc
37 #check whether a BMPString attribute can be properly decoded
38 $CERTTOOL --certificate-info --infile $srcdir/bmpstring.pem >tmp-pem.pem
39 rc=$?
41 if test "$rc" != "0"; then
42 exit $rc
45 diff $srcdir/bmpstring.pem tmp-pem.pem
46 rc=$?
48 if test "$rc" != "0"; then
49 exit $rc
52 rm -f tmp-pem.pem
54 exit 0