blob: f2df1c5ddadba1247d5817cef5337533796cae4b (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: build test
build:
go build networkQuality.go
test:
go test ./timeoutat/ ./traceable/ ./ms/ ./utilities/
golines:
find . -name '*.go' -exec ~/go/bin/golines -w {} \;
clean:
go clean -testcache
rm -f *.o core
|