mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
14 lines
202 B
Bash
Executable File
14 lines
202 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
|
|
./build-bench-boot --size "$test_size"
|
|
./build-test-gdb
|