From 8a07fdb2eb7f8f19b41566c8d773e7a3e5023110 Mon Sep 17 00:00:00 2001 From: Adam Emerson Date: Mon, 18 Sep 2023 13:27:51 -0400 Subject: [PATCH] qa/rados: Add neorados tests to run Signed-off-by: Adam Emerson --- qa/workunits/rados/test.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/qa/workunits/rados/test.sh b/qa/workunits/rados/test.sh index a88826cf619..8d5f4008895 100755 --- a/qa/workunits/rados/test.sh +++ b/qa/workunits/rados/test.sh @@ -48,6 +48,22 @@ do fi done +for f in \ + cls cmd handler_error io list misc pool read_operations snapshots \ + watch_notify write_operations +do + if [ $parallel -eq 1 ]; then + r=`printf '%25s' $f` + ff=`echo $f | awk '{print $1}'` + bash -o pipefail -exc "ceph_test_neorados_$f $color 2>&1 | tee ceph_test_neorados_$ff.log | sed \"s/^/$r: /\"" & + pid=$! + echo "test $f on pid $pid" + pids[$f]=$pid + else + ceph_test_neorados_$f + fi +done + ret=0 if [ $parallel -eq 1 ]; then for t in "${!pids[@]}" -- 2.47.3