initial top-level import of subdirectories

This commit is contained in:
Brent Cook
2014-07-10 06:21:51 -05:00
parent e9eff5016a
commit 2b6dbc39ef
19 changed files with 426 additions and 0 deletions

8
tests/Makefile.am.tpl Normal file
View File

@@ -0,0 +1,8 @@
include $(top_srcdir)/Makefile.am.common
AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes
AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1
TESTS =
check_PROGRAMS =
EXTRA_DIST =

3
tests/aeadtest.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
set -e
./aeadtest $srcdir/aeadtests.txt

6
tests/arc4randomforktest.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
set -e
./arc4randomforktest
./arc4randomforktest -b
./arc4randomforktest -p
./arc4randomforktest -bp

3
tests/evptest.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
set -e
./evptest $srcdir/evptests.txt

3
tests/pq_test.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
set -e
./pq_test | cmp $srcdir/pq_expected.txt /dev/stdin

4
tests/ssltest.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
set -e
export PATH=$srcdir/../apps:$PATH
$srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem