copy remaining test harness dependencies

This commit is contained in:
Brent Cook 2015-03-22 08:03:02 -05:00
parent a34d319f8d
commit cc3bdea44a

View File

@ -197,10 +197,14 @@ echo "copying tests"
for i in `find $libcrypto_regress -name '*.c'`; do for i in `find $libcrypto_regress -name '*.c'`; do
$CP "$i" tests $CP "$i" tests
done done
$CP $libcrypto_regress/evp/evptests.txt tests
$CP $libcrypto_regress/aead/aeadtests.txt tests
$CP $libcrypto_regress/pqueue/expected.txt tests/pq_expected.txt
# copy libc tests # copy libc tests
$CP $libc_regress/arc4random-fork/arc4random-fork.c tests/arc4randomforktest.c $CP $libc_regress/arc4random-fork/arc4random-fork.c tests/arc4randomforktest.c
$CP $libc_regress/explicit_bzero/explicit_bzero.c tests $CP $libc_regress/explicit_bzero/explicit_bzero.c tests
$CP $libc_src/string/memmem.c tests
$CP $libc_regress/timingsafe/timingsafe.c tests $CP $libc_regress/timingsafe/timingsafe.c tests
# copy libssl tests # copy libssl tests
@ -208,10 +212,9 @@ $CP $libssl_regress/ssl/testssl tests
for i in `find $libssl_regress -name '*.c'`; do for i in `find $libssl_regress -name '*.c'`; do
$CP "$i" tests $CP "$i" tests
done done
$CP $libssl_regress/certs/ca.pem tests $CP $libssl_regress/certs/ca.pem tests
$CP $libssl_regress/certs/server.pem tests $CP $libssl_regress/certs/server.pem tests
$CP $libc_src/string/memmem.c tests
chmod 755 tests/testssl chmod 755 tests/testssl
# add headers # add headers