cloudinit/test
2014-03-18 09:14:11 -07:00

11 lines
164 B
Bash
Executable File

#!/bin/bash -e
echo "Building bin/coreos-cloudinit"
. build
echo "Running tests..."
for pkg in "./initialize ./system"; do
go test -i $pkg
go test -v $pkg
done