diff options
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 |