diff options
author | Brent Cook <bcook@openbsd.org> | 2014-12-03 22:58:24 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-03 22:58:24 -0600 |
commit | a19dd0e61b158f58d5375172bbb367b02371060d (patch) | |
tree | 1a9c351fd1b22e35f4ba6388211383b9592f6c6c /update.sh | |
parent | e83c30c158d8ece1e4b0f459faccfd5e5ae67112 (diff) | |
download | portable-a19dd0e61b158f58d5375172bbb367b02371060d.tar.gz portable-a19dd0e61b158f58d5375172bbb367b02371060d.tar.bz2 portable-a19dd0e61b158f58d5375172bbb367b02371060d.zip |
better cleanup biotest.c
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -287,6 +287,7 @@ for i in $openssl_cmd_src/*; do | |||
287 | cp $i apps | 287 | cp $i apps |
288 | done | 288 | done |
289 | 289 | ||
290 | rm -f tests/biotest.c | ||
290 | for i in aead/aeadtest.c aeswrap/aes_wrap.c base64/base64test.c bf/bftest.c \ | 291 | for i in aead/aeadtest.c aeswrap/aes_wrap.c base64/base64test.c bf/bftest.c \ |
291 | bn/general/bntest.c bn/mont/mont.c \ | 292 | bn/general/bntest.c bn/mont/mont.c \ |
292 | cast/casttest.c chacha/chachatest.c cts128/cts128test.c \ | 293 | cast/casttest.c chacha/chachatest.c cts128/cts128test.c \ |
@@ -316,10 +317,6 @@ test_drivers=( | |||
316 | arc4randomforktest | 317 | arc4randomforktest |
317 | pidwraptest | 318 | pidwraptest |
318 | ) | 319 | ) |
319 | # disabled by-default tests | ||
320 | tests_disabled=( | ||
321 | biotest | ||
322 | ) | ||
323 | tests_posix_only=( | 320 | tests_posix_only=( |
324 | arc4randomforktest | 321 | arc4randomforktest |
325 | explicit_bzero | 322 | explicit_bzero |
@@ -360,8 +357,6 @@ for i in "${test_drivers[@]}"; do | |||
360 | fi | 357 | fi |
361 | if ! [[ ${tests_disabled[*]} =~ "$i" ]]; then | 358 | if ! [[ ${tests_disabled[*]} =~ "$i" ]]; then |
362 | echo "TESTS += ${i}.sh" >> tests/Makefile.am | 359 | echo "TESTS += ${i}.sh" >> tests/Makefile.am |
363 | else | ||
364 | rm -f tests/$i* | ||
365 | fi | 360 | fi |
366 | if [[ ${tests_posix_only[*]} =~ "$i" ]]; then | 361 | if [[ ${tests_posix_only[*]} =~ "$i" ]]; then |
367 | echo "endif" >> tests/Makefile.am | 362 | echo "endif" >> tests/Makefile.am |