183098Smp# $NetBSD: t_factor.sh,v 1.7 2010/11/19 12:31:36 pgoyette Exp $
283098Smp#
383098Smp# Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
483098Smp# All rights reserved.
583098Smp#
683098Smp# Redistribution and use in source and binary forms, with or without
783098Smp# modification, are permitted provided that the following conditions
883098Smp# are met:
983098Smp# 1. Redistributions of source code must retain the above copyright
1083098Smp#    notice, this list of conditions and the following disclaimer.
1183098Smp# 2. Redistributions in binary form must reproduce the above copyright
1283098Smp#    notice, this list of conditions and the following disclaimer in the
1383098Smp#    documentation and/or other materials provided with the distribution.
1483098Smp#
1583098Smp# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
1683098Smp# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
1783098Smp# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1883098Smp# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
1983098Smp# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2083098Smp# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2183098Smp# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2283098Smp# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2383098Smp# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2483098Smp# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2583098Smp# POSSIBILITY OF SUCH DAMAGE.
2683098Smp#
2783098Smp
2883098Smpexpect() {
2983098Smp	echo "${2}" >expout
3083098Smp	atf_check -s eq:0 -o file:expout -e empty /usr/games/factor ${1}
3183098Smp}
3283098Smp
3383098Smpatf_test_case overflow
3483098Smpoverflow_head() {
35	atf_set "descr" "Tests for overflow conditions"
36	atf_set "require.progs" "/usr/games/factor"
37}
38overflow_body() {
39	expect '8675309' '8675309: 8675309'
40	expect '6172538568' '6172538568: 2 2 2 3 7 17 2161253'
41}
42
43atf_test_case loop
44loop_head() {
45	atf_set "descr" "Tests some cases that once locked the program" \
46	                "in an infinite loop"
47	atf_set "require.progs" "/usr/games/factor"
48}
49loop_body() {
50	expect '99999999999991' '99999999999991: 7 13 769231 1428571'
51	expect '2147483647111311' '2147483647111311: 3 3 3 131 607148331103'
52}
53
54atf_init_test_cases()
55{
56	atf_add_test_case overflow
57	atf_add_test_case loop
58}
59