mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Group the kernel-selftest testcases in run-ptest. Signed-off-by: Dengke Du <dengke.du@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
12 lines
198 B
Bash
Executable File
12 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
export PATH=$PATH:/usr/kernel-selftest/bpf
|
|
|
|
# test_align
|
|
test_align | grep "12 pass" &> /dev/null
|
|
if [ $? == 0 ]; then
|
|
echo "[PASS]: test_align"
|
|
else
|
|
echo "[FAIL]: test_align"
|
|
fi
|
|
|