|
#!/bin/bash
|
|
|
|
DEST=$1
|
|
|
|
set -e
|
|
|
|
bundle_test_integration() {
|
|
LDFLAGS="$LDFLAGS $LDFLAGS_STATIC" go_test_dir ./integration \
|
|
"-coverpkg $(find_dirs '*.go' | sed 's,^\.,github.com/dotcloud/docker,g' | paste -d, -s)"
|
|
}
|
|
|
|
bundle_test_integration 2>&1 | tee $DEST/test.log
|