f9193f4ce7
Change-Id: Id73fb7e300d66d31a7c3986c0334b6f56e284905 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
259 B
Bash
Executable File
16 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$testdir/../../..
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter json
|
|
|
|
$testdir/parse/json_parse_ut
|
|
$testdir/util/json_util_ut
|
|
$testdir/write/json_write_ut
|
|
|
|
timing_exit json
|