cloudinit/test

11 lines
164 B
Plaintext
Raw Permalink Normal View History

2014-03-05 04:50:54 +04:00
#!/bin/bash -e
echo "Building bin/coreos-cloudinit"
. build
echo "Running tests..."
2014-03-18 20:00:41 +04:00
for pkg in "./initialize ./system"; do
go test -i $pkg
go test -v $pkg
done