Files
linux-kernel-module-cheat/test
Ciro Santilli 六四事件 法轮功 fa928017c9 test: add test-userland
2019-01-22 00:00:00 +00:00

16 lines
221 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
test_size=1
while [ $# -gt 0 ]; do
case "$1" in
--size)
test_size="$2"
shift 2
;;
esac
done
./bench-boot --size "$test_size"
./test-modules
./test-gdb
./test-userland