16 lines
184 B
Bash
Executable File
16 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
useradd ubuntu
|
|
|
|
export BUILD_BASE_DIR=$(pwd)
|
|
|
|
cd tests
|
|
|
|
cleanup() {
|
|
cp testsuite.log $AUTOPKGTEST_ARTIFACTS/
|
|
cat testsuite.log
|
|
}
|
|
|
|
trap cleanup TERM EXIT
|
|
|
|
./run_some 2>&1
|