aboutsummaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-02-06 20:17:31 -0600
committerBrent Cook <bcook@openbsd.org>2015-02-06 20:17:31 -0600
commitbe5d0cca13c00f5615c16fcfaa5674558a29568b (patch)
treebc654c5639e8dd9c280111efe1954f990118eff4 /update.sh
parenta323f52a3ffbdaf554efa4f5924315aff3123891 (diff)
downloadportable-be5d0cca13c00f5615c16fcfaa5674558a29568b.tar.gz
portable-be5d0cca13c00f5615c16fcfaa5674558a29568b.tar.bz2
portable-be5d0cca13c00f5615c16fcfaa5674558a29568b.zip
update with latest, add more tests
this adds the new bytestring apis and new regression tests
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh20
1 files changed, 5 insertions, 15 deletions
diff --git a/update.sh b/update.sh
index c8ec876..925c327 100755
--- a/update.sh
+++ b/update.sh
@@ -190,19 +190,8 @@ done
190 190
191# copy libcrypto tests 191# copy libcrypto tests
192echo "copying tests" 192echo "copying tests"
193rm -f tests/biotest.c 193for i in `find $libcrypto_regress -name '*.c'`; do
194for i in aead/aeadtest.c aeswrap/aes_wrap.c base64/base64test.c bf/bftest.c \ 194 $CP "$i" tests
195 bn/general/bntest.c bn/mont/mont.c \
196 cast/casttest.c chacha/chachatest.c cts128/cts128test.c \
197 des/destest.c dh/dhtest.c dsa/dsatest.c ec/ectest.c ecdh/ecdhtest.c \
198 ecdsa/ecdsatest.c engine/enginetest.c evp/evptest.c exp/exptest.c \
199 gcm128/gcm128test.c hmac/hmactest.c idea/ideatest.c ige/igetest.c \
200 md4/md4test.c md5/md5test.c mdc2/mdc2test.c poly1305/poly1305test.c \
201 pkcs7/pkcs7test.c pqueue/pq_test.c rand/randtest.c rc2/rc2test.c \
202 rc4/rc4test.c rmd/rmdtest.c sha/shatest.c sha1/sha1test.c \
203 sha256/sha256test.c sha512/sha512test.c utf8/utf8test.c \
204 gost/gost2814789t.c ; do
205 $CP $libcrypto_regress/$i tests
206done 195done
207 196
208# copy libc tests 197# copy libc tests
@@ -211,9 +200,10 @@ $CP $libc_regress/explicit_bzero/explicit_bzero.c tests
211$CP $libc_regress/timingsafe/timingsafe.c tests 200$CP $libc_regress/timingsafe/timingsafe.c tests
212 201
213# copy libssl tests 202# copy libssl tests
214$CP $libssl_regress/asn1/asn1test.c tests
215$CP $libssl_regress/ssl/testssl tests 203$CP $libssl_regress/ssl/testssl tests
216$CP $libssl_regress/ssl/ssltest.c tests 204for i in `find $libssl_regress -name '*.c'`; do
205 $CP "$i" tests
206done
217$CP $libssl_regress/certs/ca.pem tests 207$CP $libssl_regress/certs/ca.pem tests
218$CP $libssl_regress/certs/server.pem tests 208$CP $libssl_regress/certs/server.pem tests
219 209