2006-01-15 08:54:59 +00:00
|
|
|
#!/bin/sh
|
2005-11-06 09:25:56 +00:00
|
|
|
export LD_LIBRARY_PATH="../../lib:$LD_LIBRARY_PATH"
|
2007-07-09 10:52:52 +00:00
|
|
|
cd base64unittest && make test && cd .. && \
|
|
|
|
cd bigintunittest && make test && cd .. && \
|
|
|
|
cd certunittest && make test && cd .. && \
|
|
|
|
cd cipherunittest && make test && cd .. && \
|
|
|
|
cd clientplugin && make test && cd .. && \
|
2007-08-22 06:32:11 +00:00
|
|
|
cd cms && make test && cd .. && \
|
2007-07-09 10:52:52 +00:00
|
|
|
cd dsaunittest && make test && cd .. && \
|
2007-08-22 06:32:11 +00:00
|
|
|
#cd filewatchunittest && make test && cd .. && \
|
2007-07-09 10:52:52 +00:00
|
|
|
cd hashunittest && make test && cd .. && \
|
|
|
|
cd hexunittest && make test && cd .. && \
|
|
|
|
cd kdfunittest && make test && cd .. && \
|
2007-08-22 06:32:11 +00:00
|
|
|
cd keybundle && make test && cd .. && \
|
2007-07-09 10:52:52 +00:00
|
|
|
cd keygenunittest && make test && cd .. && \
|
|
|
|
cd keylengthunittest && make test && cd .. && \
|
2007-08-22 06:32:11 +00:00
|
|
|
cd keystore && make test && cd .. && \
|
2007-07-09 10:52:52 +00:00
|
|
|
cd macunittest && make test && cd .. && \
|
2007-08-22 06:32:11 +00:00
|
|
|
cd metatype && make test && cd .. && \
|
|
|
|
cd pgpunittest && make test && cd .. && \
|
2008-05-22 00:54:13 +00:00
|
|
|
cd pipeunittest && make test && cd .. && \
|
2007-07-09 10:52:52 +00:00
|
|
|
cd pkits && make test && cd .. && \
|
|
|
|
cd rsaunittest && make test && cd .. && \
|
|
|
|
cd securearrayunittest && make test && cd .. && \
|
|
|
|
cd staticunittest && make test && cd .. && \
|
|
|
|
cd symmetrickeyunittest && make test && cd .. && \
|
2007-08-28 00:46:06 +00:00
|
|
|
cd tls && make test && cd .. #&& \
|
2008-05-22 00:54:13 +00:00
|
|
|
cd velox && make test && cd ..
|