mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
15 lines
205 B
Bash
Executable File
15 lines
205 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
|