qca/unittest/checkall
Brad Hards e281c22103 Add another unit test - this one checks client
side providers.

There is a bit to be done on this, but right now
it demonstrates the problem I'm seeing with the
AES-CMAC example, in that the plugin loader 
segfaults.

CCMAIL: justin@affinix.com

svn path=/trunk/kdesupport/qca/; revision=562878
2006-07-16 05:32:52 +00:00

22 lines
905 B
Bash

#!/bin/sh
export LD_LIBRARY_PATH="../../lib:$LD_LIBRARY_PATH"
cd base64unittest && make check && cd .. && \
cd bigintunittest && make check && cd .. && \
cd certunittest && make check && cd .. && \
cd cipherunittest && make check && cd .. && \
cd clientplugin && make check && cd .. && \
cd dsaunittest && make check && cd .. && \
cd hashunittest && make check && cd .. && \
cd hexunittest && make check && cd .. && \
cd kdfunittest && make check && cd .. && \
cd keygenunittest && make check && cd .. && \
cd keylengthunittest && make check && cd .. && \
cd macunittest && make check && cd .. && \
cd pkits && make check && cd .. && \
cd randomunittest && make check && cd .. && \
cd rsaunittest && make check && cd .. && \
cd securearrayunittest && make check && cd .. && \
cd staticunittest && make check && cd .. && \
cd symmetrickeyunittest && make check && cd .. && \
cd tls && make check && cd ..