File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 42
42
uses : actions/checkout@v2
43
43
- name : Build code example
44
44
run : |
45
- cmake -S test -b Build -DBUILD_CODE_EXAMPLE=ON
46
- make -C build code_example_posix -j8
45
+ cmake -S test -B Build -DBUILD_CODE_EXAMPLE=ON
46
+ make -C Build code_example_posix -j8
47
47
complexity :
48
48
runs-on : ubuntu-latest
49
49
steps :
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ every path of execution and achieve 100% branch coverage.
65
65
@page backoff_algorithm_example Code Example for backoffAlgorithm API
66
66
@brief Example POSIX application that retries DNS resolution operation with exponential backoff-and-jitter using the backoffAlgorithm library.
67
67
68
- @include backoff_algorithm_posix.c
68
+ @include backoff_algorithm_posix.c
69
69
*/
70
70
71
71
/**
Original file line number Diff line number Diff line change 41
41
param
42
42
pcontext
43
43
pnextbackoff
44
+ posix
44
45
pretrycontext
45
46
pretryparams
46
47
prng
48
+ rand
47
49
randomvalue
48
50
readme
49
51
rm
57
59
toolchain
58
60
tr
59
61
trng
60
- utils
62
+ usleep
63
+ utils
Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ if(${BUILD_CODE_EXAMPLE})
54
54
${MODULE_ROOT_DIR} /docs/doxygen/code_examples/backoff_algorithm_posix.c )
55
55
56
56
target_link_libraries ( code_example_posix coverity_analysis )
57
-
57
+
58
58
endif ()
59
-
59
+
60
60
# ==================================== Unit Test Configuration ====================================
61
61
62
62
if (${BUILD_UNIT_TESTS} )
You can’t perform that action at this time.
0 commit comments