10f9391a22
Core dumps stop working if the path is longer than 64 bytes. Use readlink to shorten some of the very long relative paths. Change-Id: I5e7eb6580ca581c5ac3a71afb7b62953836e2660 Signed-off-by: Ben Walker <benjamin.walker@intel.com>
13 lines
325 B
Bash
Executable File
13 lines
325 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter event
|
|
$testdir/event_perf/event_perf -m 0xF -t 1
|
|
$testdir/reactor/reactor -t 1
|
|
$testdir/reactor_perf/reactor_perf -t 1
|
|
$testdir/subsystem/subsystem_ut
|
|
timing_exit event
|