boards: rename native64 -> native #27490
Annotations
11 warnings
static-tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
static-tests:
sys/fido2/ctap/ctap_mem.c#L31
Coccinelle proposes the following patch:
--- sys/fido2/ctap/ctap_mem.c
+++ sys/fido2/ctap/ctap_mem.c
@@ -25,7 +25,7 @@
#include "fido2/ctap/ctap_mem.h"
#include "fido2/ctap/ctap_utils.h"
-#define ENABLE_DEBUG (0)
+#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef BOARD_NATIVE32
|
static-tests:
core/thread.c#L264
Uncrustify proposes the following patch:
--- a/core/thread.c
+++ b/core/thread.c
@@ -257,8 +257,8 @@ kernel_pid_t thread_create(char *stack, int stacksize, uint8_t priority,
* Make sure the TLS area is aligned as required and that the
* resulting stack will also be aligned as required
*/
- thread->tls = (void *) ((uintptr_t) tls & ~ (TLS_ALIGN - 1));
- stacksize = (char *) thread->tls - stack;
+ thread->tls = (void *)((uintptr_t)tls & ~(TLS_ALIGN - 1));
+ stacksize = (char *)thread->tls - stack;
_init_tls(thread->tls);
#endif
|
static-tests:
dist/tools/ci/build_and_test.sh#L22
Double quote to prevent globbing and word splitting. [SC2086]
|
static-tests:
dist/tools/ci/build_and_test.sh#L23
Double quote to prevent globbing and word splitting. [SC2086]
|
static-tests:
dist/tools/ci/build_and_test.sh#L32
Double quote to prevent globbing and word splitting. [SC2086]
|
static-tests:
dist/tools/ci/build_and_test.sh#L33
Check exit code directly with e.g. 'if ! mycmd;', not indirectly with $?. [SC2181]
|
static-tests:
dist/tools/ci/build_and_test.sh#L53
Expressions don't expand in single quotes, use double quotes for that. [SC2016]
|
static-tests:
dist/tools/ci/build_and_test.sh#L59
Expressions don't expand in single quotes, use double quotes for that. [SC2016]
|
static-tests:
dist/tools/ci/build_and_test.sh#L63
Double quote to prevent globbing and word splitting. [SC2086]
|
static-tests:
examples/suit_update/tests-with-config/check-config.sh#L28
Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. [SC2295]
|