cloudinit/test

11 lines
164 B
Plaintext
Raw Normal View History

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