1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!/bin/sh
export LD_LIBRARY_PATH="../../lib:$LD_LIBRARY_PATH"
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 .. && \
cd cms && make test && cd .. && \
cd dsaunittest && make test && cd .. && \
#cd filewatchunittest && make test && cd .. && \
cd hashunittest && make test && cd .. && \
cd hexunittest && make test && cd .. && \
cd kdfunittest && make test && cd .. && \
cd keybundle && make test && cd .. && \
cd keygenunittest && make test && cd .. && \
cd keylengthunittest && make test && cd .. && \
cd keystore && make test && cd .. && \
cd macunittest && make test && cd .. && \
cd metatype && make test && cd .. && \
cd pgpunittest && make test && cd .. && \
cd pipeunittest && make test && cd .. && \
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 .. && \
cd tls && make test && cd .. #&& \
cd velox && make test && cd ..
|