#!/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