mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 03:31:36 +01:00
bench-boot: continue progress, renamte to test-boot
This commit is contained in:
15
build-test-boot
Executable file
15
build-test-boot
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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 --all-archs qemu-gem5-buildroot
|
||||
if [ "$test_size" -ge 3 ]; then
|
||||
./build --arch aarch64 all-linux
|
||||
fi
|
||||
Reference in New Issue
Block a user