The top-level autotest.sh script will catch any core dumps at the end of the test run, so sprinkling process_core in the individual test scripts is unnecessary. Also make the per-component test scripts run with 'set -e' (exit on error). Change-Id: I85f124e164ca93d35eaf672a428a841c119c550b Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
237 B
Bash
Executable File
16 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir="$testdir/../../.."
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter memory
|
|
|
|
timing_enter vtophys
|
|
$testdir/vtophys
|
|
timing_exit vtophys
|
|
|
|
timing_exit memory
|