Remove building with NOCRYPTO option
[minix3.git] / tests / usr.bin / nbperf / t_nbperf.sh
blob37b7d907e2bbbaf5a712f2cbc90394474d2ba099
1 # $NetBSD: t_nbperf.sh,v 1.3 2014/04/30 21:04:21 joerg Exp $
3 # Copyright (c) 2012 The NetBSD Foundation, Inc.
4 # All rights reserved.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 # POSSIBILITY OF SUCH DAMAGE.
28 cleanup()
30 rm -f reference.txt hash.c hash.map testprog
33 atf_test_case chm
34 chm_head()
36 atf_set "descr" "Checks chm algorithm"
37 atf_set "require.files" "/usr/share/dict/web2"
38 atf_set "require.progs" "cc"
40 chm_body()
42 for n in 4 32 128 1024 65536; do
43 seq 0 $(($n - 1)) > reference.txt
44 atf_check -o file:reference.txt \
45 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 chm cat \
46 $n $(atf_get_srcdir)/hash_driver.c
47 atf_check -o file:hash.map \
48 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 chm cat \
49 $n $(atf_get_srcdir)/hash_driver.c
50 done
52 chm_clean()
54 cleanup
57 atf_test_case chm3
58 chm3_head()
60 atf_set "descr" "Checks chm3 algorithm"
61 atf_set "require.files" "/usr/share/dict/web2"
62 atf_set "require.progs" "cc"
64 chm3_body()
66 for n in 4 32 128 1024 65536; do
67 seq 0 $(($n - 1)) > reference.txt
68 atf_check -o file:reference.txt \
69 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 chm3 cat \
70 $n $(atf_get_srcdir)/hash_driver.c
71 atf_check -o file:hash.map \
72 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 chm3 cat \
73 $n $(atf_get_srcdir)/hash_driver.c
74 done
76 chm3_clean()
78 cleanup
81 atf_test_case bdz
82 bdz_head()
84 atf_set "descr" "Checks bdz algorithm"
85 atf_set "require.files" "/usr/share/dict/web2"
86 atf_set "require.progs" "cc"
88 bdz_body()
90 for n in 4 32 128 1024 65536 131072; do
91 seq 0 $(($n - 1)) > reference.txt
92 atf_check -o file:reference.txt \
93 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 bdz "sort -n" \
94 $n $(atf_get_srcdir)/hash_driver.c
95 atf_check -o file:hash.map \
96 $(atf_get_srcdir)/h_nbperf /usr/share/dict/web2 bdz cat \
97 $n $(atf_get_srcdir)/hash_driver.c
98 done
100 bdz_clean()
102 cleanup
105 atf_init_test_cases()
107 atf_add_test_case chm
108 atf_add_test_case chm3
109 atf_add_test_case bdz