feat: add lab-rv32i-freertos-scheduler-states card
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env sh
|
||||
set -eu
|
||||
|
||||
cxx=${CXX_HOST:-c++}
|
||||
build_dir=${1:-host-build}
|
||||
mkdir -p "$build_dir"
|
||||
|
||||
$cxx -std=c++17 -Wall -Wextra -Werror -pedantic \
|
||||
-fsanitize=address,undefined -fno-omit-frame-pointer \
|
||||
-Itests/host-shim -Iinclude \
|
||||
tests/types_host.cpp -o "$build_dir/types_host"
|
||||
|
||||
ASAN_OPTIONS=detect_leaks=1 "$build_dir/types_host"
|
||||
echo "PASS host: typed ticks and non-owning TaskRef"
|
||||
|
||||
Reference in New Issue
Block a user