The test fails with: "sub-section.sh: line 23: ndctl: command not found"
...it should be using the built ndctl program, not the one installed in the filesystem. Signed-off-by: Dan Williams <dan.j.willi...@intel.com> --- test/sub-section.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sub-section.sh b/test/sub-section.sh index 77b963355c8f..5acc25eefe87 100755 --- a/test/sub-section.sh +++ b/test/sub-section.sh @@ -20,7 +20,7 @@ MIN_AVAIL=$((TEST_SIZE*4)) MAX_NS=10 NAME="subsection-test" -ndctl list -N | jq -r ".[] | select(.name==\"subsection-test\") | .dev" +$NDCTL list -N | jq -r ".[] | select(.name==\"subsection-test\") | .dev" rc=$FAIL cleanup() { -- 2.49.0