Home | History | Annotate | Line # | Download | only in nbperf
t_nbperf.sh revision 1.3
      1 # $NetBSD: t_nbperf.sh,v 1.3 2014/04/30 21:04:21 joerg Exp $
      2 #
      3 # Copyright (c) 2012 The NetBSD Foundation, Inc.
      4 # All rights reserved.
      5 #
      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.
     14 #
     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.
     26 #
     27 
     28 cleanup()
     29 {
     30 	rm -f reference.txt hash.c hash.map testprog
     31 }
     32 
     33 atf_test_case chm
     34 chm_head()
     35 {
     36 	atf_set "descr" "Checks chm algorithm"
     37 	atf_set "require.files" "/usr/share/dict/web2"
     38 	atf_set "require.progs" "cc"
     39 }
     40 chm_body()
     41 { 
     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
     51 }
     52 chm_clean()
     53 {
     54 	cleanup
     55 }
     56 
     57 atf_test_case chm3
     58 chm3_head()
     59 {
     60 	atf_set "descr" "Checks chm3 algorithm"
     61 	atf_set "require.files" "/usr/share/dict/web2"
     62 	atf_set "require.progs" "cc"
     63 }
     64 chm3_body()
     65 { 
     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
     75 }
     76 chm3_clean()
     77 {
     78 	cleanup
     79 }
     80 
     81 atf_test_case bdz
     82 bdz_head()
     83 {
     84 	atf_set "descr" "Checks bdz algorithm"
     85 	atf_set "require.files" "/usr/share/dict/web2"
     86 	atf_set "require.progs" "cc"
     87 }
     88 bdz_body()
     89 { 
     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
     99 }
    100 bdz_clean()
    101 {
    102 	cleanup
    103 }
    104 
    105 atf_init_test_cases()
    106 {
    107 	atf_add_test_case chm
    108 	atf_add_test_case chm3
    109 	atf_add_test_case bdz
    110 }
    111