Commit e785a581 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 8538a5c1
#!/bin/bash -e
# run wcfs tests under custom linux kernel
# flags for `go build`
goflags=""
case "$1" in
-race) # enable race-detector
goflags="$goflags $1"
shift;;
esac
if test -z "$qrun_loglevel"; then
go build # rebuild wcfs TODO also test with -race
go build $goflags # rebuild wcfs
linux=${LINUX:-$HOME/src/linux/linux/arch/`uname -m`/boot/bzImage}
exec ../t/qemu-runlinux "$linux" $0 "$@"
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment