2024-08-15 23:30:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
script_dir=$(dirname "$(realpath "$0")")
|
|
|
|
cd $script_dir/..
|
|
|
|
|
2024-08-19 16:20:46 +02:00
|
|
|
# prep
|
|
|
|
$script_dir/build
|
|
|
|
|
2024-08-20 16:39:11 +02:00
|
|
|
go test -v ./cmd/chkbit/util -count=1
|
|
|
|
go test -v ./scripts -count=1
|