blob: 9a405e2fbb7e4a2a304f35463f2a30e8f44e12f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
. ./test-pre.sh
$ECHO "$BLUE[*] Execution cmocka Unit-Tests $GREY"
unset AFL_CC
make -C .. unit || CODE=1 INCOMPLETE=1 :
rm -rf unittests/unit_hash unittests/unit_rand
. ./test-post.sh
|