mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12 lines
173 B
Text
12 lines
173 B
Text
|
#!/bin/bash
|
||
|
|
||
|
DEST=$1
|
||
|
|
||
|
set -e
|
||
|
|
||
|
bundle_test_integration() {
|
||
|
LDFLAGS="$LDFLAGS $LDFLAGS_STATIC" go_test_dir ./integration
|
||
|
}
|
||
|
|
||
|
bundle_test_integration 2>&1 | tee $DEST/test.log
|