From ca007b4dde367c1316f4bfe36895dbea2fd34956 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 14 Aug 2016 12:19:32 +0100 Subject: Test suite: run-all: record output Signed-off-by: Ian Jackson --- tests/run-all | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tests/run-all') diff --git a/tests/run-all b/tests/run-all index b5c5bb0..c6df386 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 -- cgit v1.2.3