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
|
|
|