mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 19:21:35 +01:00
17 lines
322 B
Bash
Executable File
17 lines
322 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 --all-archs --all-emulators
|
|
./test-baremetal --all-archs --all-emulators
|
|
./test-userland --all-archs --all-emulators
|