As part of this commit, stop building the iscsi tests on FreeBSD. This new pdu test links in object files from the iscsi library, some of which do not build currently on FreeBSD with our default error/warning levels. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: Icb6a3dc17aa62882d0477f7734d2701ea09a3f36
24 lines
413 B
Bash
Executable File
24 lines
413 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir="$testdir/../../.."
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter iscsi
|
|
|
|
timing_enter param
|
|
$testdir/param/param_ut
|
|
timing_exit param
|
|
|
|
timing_enter target_node
|
|
$testdir/target_node/target_node_ut $testdir/target_node/target_node.conf
|
|
timing_exit target_node
|
|
|
|
timing_enter pdu
|
|
$testdir/pdu/pdu
|
|
timing_exit pdu
|
|
|
|
timing_exit iscsi
|