cloudinit/test

11 lines
177 B
Plaintext
Raw Normal View History

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