-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathrun.sh
More file actions
42 lines (37 loc) · 821 Bytes
/
run.sh
File metadata and controls
42 lines (37 loc) · 821 Bytes
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
. ./fpp-options.sh
abs_type()
{
run_test "$fpp_options" abs_type && \
diff_hpp AbsTypeAlias && \
diff_cpp AbsSerializable
}
basic()
{
run_test "$fpp_options" basic && \
diff_h_hpp TU32Alias && \
diff_h_hpp TF32Alias && \
diff_hpp TStringAlias && \
diff_hpp TStringSizeAlias && \
diff_cpp BasicSerializable
}
component()
{
run_test "$fpp_options" component && \
diff_hpp C_XAlias && \
diff_cpp C_AArray
}
namespace()
{
run_test "$fpp_options" namespace && \
diff_h_hpp SimpleCTypeAlias && \
diff_h_hpp SimpleCType2Alias && \
diff_hpp NamespacedAliasTypeAlias && \
diff_hpp NamespacedAliasType2Alias && \
diff_cpp NamespaceSerializable
}
state_machine()
{
run_test "$fpp_options" state_machine && \
diff_hpp SM_XAlias && \
diff_cpp SM_AArray
}