2016-05-24 18:04:20 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
2017-04-04 23:20:16 +00:00
|
|
|
rootdir=$(readlink -f $testdir/../../..)
|
2018-02-27 22:14:08 +00:00
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
timing_enter event
|
2017-02-01 17:15:07 +00:00
|
|
|
$testdir/event_perf/event_perf -m 0xF -t 1
|
2016-07-26 19:56:07 +00:00
|
|
|
$testdir/reactor/reactor -t 1
|
2017-02-01 17:15:07 +00:00
|
|
|
$testdir/reactor_perf/reactor_perf -t 1
|
2017-12-18 21:20:41 +00:00
|
|
|
report_test_completion "event"
|
2016-05-24 18:04:20 +00:00
|
|
|
timing_exit event
|