2f777920c9
Where possible (for tests that don't require DPDK), run the unit tests under Valgrind to check for memory leaks and out-of-bounds accesses. Change-Id: Ic7b3cdd39a6d59f4e41b4a161be3363f6b076f65 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
289 B
Bash
Executable File
16 lines
289 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
|
|
|
|
$valgrind $testdir/parse/json_parse_ut
|
|
$valgrind $testdir/util/json_util_ut
|
|
$valgrind $testdir/write/json_write_ut
|
|
|
|
timing_exit json
|