forked from wolfSSL/wolfMQTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commit-tests.sh
executable file
·94 lines (72 loc) · 3.04 KB
/
commit-tests.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh
#commit-tests.sh
# make sure current config is ok
echo -e "\n\nTesting current config...\n\n"
make clean; make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nCurrent config make test failed" && exit 1
# make sure basic config is ok
echo -e "\n\nTesting no TLS config too...\n\n"
./configure --disable-tls;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --disable-tls' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --disable-tls' make test failed " && exit 1
# make sure basic config plus tls is ok
echo -e "\n\nTesting TLS config too...\n\n"
./configure --enable-tls;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-tls' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-tls' make test failed " && exit 1
# make sure MQTTv5 is okay
echo -e "\n\nTesting MQTTv5...\n\n"
./configure --enable-v5;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --v5' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-v5' make test failed " && exit 1
# make sure multithread is okay
echo -e "\n\nTesting multithread config...\n\n"
./configure --enable-mt;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-mt' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-mt' make test failed " && exit 1
# make sure enable-all is okay
echo -e "\n\nTesting enable-all config...\n\n"
./configure --enable-all;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-all' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-all' make test failed " && exit 1
# make sure multithread with non-blocking is okay
echo -e "\n\nTesting multithread with non-block config...\n\n"
./configure --enable-mt --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK";
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-mt --enable-nonblock' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-mt --enable-nonblock' make test failed " && exit 1
# make sure non-blocking plus TLS is okay
echo -e "\n\nTesting Non-Blocking TLS config as well...\n\n"
./configure --enable-nonblock --enable-tls CFLAGS="-DWOLFMQTT_TEST_NONBLOCK";
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-nonblock --enable-tls' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-nonblock --enable-tls' make test failed " && exit 1
# make sure non-blocking is okay
echo -e "\n\nTesting Non-Blocking config too...\n\n"
./configure --enable-nonblock --disable-tls CFLAGS="-DWOLFMQTT_TEST_NONBLOCK";
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-nonblock --disable-tls' failed" && exit 1
make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure --enable-nonblock --disable-tls' make test failed " && exit 1
exit 0