3 ### Test script for hashing
5 ### (c) 2009 Straylight/Edgeware
8 ###----- Licensing notice ---------------------------------------------------
10 ### This file is part of the mLib utilities library.
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.
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.
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.
27 ###--------------------------------------------------------------------------
31 AT_SETUP([hash: crc32])
32 AT_KEYWORDS([hash crc32])
34 AT_CHECK([BUILDDIR/t/hash.t SRCDIR/t/crc32.tests], [0], [ignore], [ignore])
39 AT_SETUP([hash: siphash])
40 AT_KEYWORDS([hash siphash])
42 AT_CHECK([BUILDDIR/t/hash.t SRCDIR/t/siphash.tests], [0], [ignore], [ignore])
47 AT_SETUP([hash: unihash])
48 AT_KEYWORDS([hash unihash])
50 $PYTHON SRCDIR/t/unihash-testgen >unihash.tests
51 AT_CHECK([BUILDDIR/t/hash.t unihash.tests], [0], [ignore], [ignore])
55 ###----- That's all, folks --------------------------------------------------