diff options
author | dim <dim@FreeBSD.org> | 2015-02-14 13:12:03 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-02-14 13:12:03 +0000 |
commit | ff34755926ad8a77e4498e82a23c847d33c6c72d (patch) | |
tree | 32512087a8fc0e78759068f074dd1fcac39ef5c9 /contrib/netbsd-tests | |
parent | 3b7b68ffe74f0538bae62b7a4ba4e448156b9542 (diff) | |
parent | 1cd0dffdca6542739e3aa4c7e5221f0b28d076c4 (diff) | |
download | FreeBSD-src-ff34755926ad8a77e4498e82a23c847d33c6c72d.zip FreeBSD-src-ff34755926ad8a77e4498e82a23c847d33c6c72d.tar.gz |
Merge ^/head r278499 through r278755.
Diffstat (limited to 'contrib/netbsd-tests')
-rwxr-xr-x | contrib/netbsd-tests/games/t_factor.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/netbsd-tests/games/t_factor.sh b/contrib/netbsd-tests/games/t_factor.sh index e2320a2..3a4ef62 100755 --- a/contrib/netbsd-tests/games/t_factor.sh +++ b/contrib/netbsd-tests/games/t_factor.sh @@ -27,13 +27,13 @@ expect() { echo "${2}" >expout - atf_check -s eq:0 -o file:expout -e empty /usr/games/factor ${1} + atf_check -s eq:0 -o file:expout -e empty /usr/bin/factor ${1} } atf_test_case overflow overflow_head() { atf_set "descr" "Tests for overflow conditions" - atf_set "require.progs" "/usr/games/factor" + atf_set "require.progs" "/usr/bin/factor" } overflow_body() { expect '8675309' '8675309: 8675309' @@ -44,7 +44,7 @@ atf_test_case loop loop_head() { atf_set "descr" "Tests some cases that once locked the program" \ "in an infinite loop" - atf_set "require.progs" "/usr/games/factor" + atf_set "require.progs" "/usr/bin/factor" } loop_body() { expect '99999999999991' '99999999999991: 7 13 769231 1428571' |