3de3d2c050
If the --from-proc-cmdline flag is given to coreos-cloudinit, the local /proc/cmdline file will be parsed for a cloud-config-url
11 lines
177 B
Bash
Executable File
11 lines
177 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
echo "Building bin/coreos-cloudinit"
|
|
. build
|
|
|
|
echo "Running tests..."
|
|
for pkg in "./initialize ./system ./datasource"; do
|
|
go test -i $pkg
|
|
go test -v $pkg
|
|
done
|