Also remove libspdk_util.a from the io_channel_ut linker command, since it already includes the tested C file directly and doesn't depend on any other util library functions. Change-Id: I4b3fc4d57b5af4524b53664365f6ba52686e4b80 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
15 lines
240 B
Bash
Executable File
15 lines
240 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 util
|
|
|
|
$testdir/bit_array/bit_array_ut
|
|
$testdir/io_channel/io_channel_ut
|
|
|
|
timing_exit util
|