From: Ian Jackson Date: Sun, 14 Aug 2016 11:19:32 +0000 (+0100) Subject: Test suite: run-all: record output X-Git-Tag: archive/debian/2.0~237 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=ca007b4dde367c1316f4bfe36895dbea2fd34956 Test suite: run-all: record output Signed-off-by: Ian Jackson --- diff --git a/tests/run-all b/tests/run-all index b5c5bb06..c6df386e 100755 --- a/tests/run-all +++ b/tests/run-all @@ -1,8 +1,10 @@ -#!/bin/sh +#!/bin/bash set -e # convenience script for running the tests outside adt-run # usage: tests/using-intree tests/run-all +set -o pipefail + set +e jcpus=`perl -MSys::CPU -we 'printf "-j%d\n",Sys::CPU::cpu_count()'` set -e @@ -11,5 +13,7 @@ if [ $# != 0 ]; then set TESTSCRIPTS="$*" fi -set -x -exec make $jcpus -k -f tests/Makefile "$@" +( + set -x + exec make $jcpus -k -f tests/Makefile "$@" +) 2>&1 |tee tests/tmp/run-all.log