We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc3fc1 commit 65643deCopy full SHA for 65643de
scripts/format-code
@@ -12,6 +12,7 @@ basedir=$(dirname $(dirname $(readlink -f $0)))
12
13
cd $basedir
14
find -type f -'(' -name "*.c" -o -name "*.h" -')' \
15
- -not -path "./build/*" \
16
- -print0 \
17
- | xargs -0 clang-format -style=file:.clang-format -i
+ -not -path "./build/*" \
+ -not -path "./deps/*" \
+ -print0 |
18
+ xargs -0 clang-format -style=file:.clang-format -i
scripts/run-tests
@@ -14,4 +14,4 @@ if [ -z $(find -'(' -name sample.yaml -o -name testcase.yaml -')' -a -print -qui
exit 0
fi
-../deps/zephyr/scripts/twister -G --testsuite-root . $@
+./deps/zephyr/scripts/twister -G --board-root . --testsuite-root samples/ $@
0 commit comments