mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-27 20:14:32 +00:00
them into the test framework. This is a very trivial test, but it already exists and I wanted to clean up the left-over tests. svn path=/trunk/kdesupport/qca/; revision=522582
18 lines
729 B
Bash
18 lines
729 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 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 securearrayunittest && make check && cd .. && \
|
|
cd staticunittest && make check && cd .. && \
|
|
cd symmetrickeyunittest && make check && cd .. && \
|
|
cd tls && make check && cd ..
|