cloudinit/test

11 lines
177 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..."
for pkg in "./initialize ./system ./datasource"; do
2014-03-18 09:00:41 -07:00
go test -i $pkg
go test -v $pkg
done