This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new c1506cf ATS regression tests: -R 1 -> -R 3 (#408)
c1506cf is described below
commit c1506cfb0ebb31810a4bd219db956f456d78542d
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Dec 9 14:22:50 2025 -0600
ATS regression tests: -R 1 -> -R 3 (#408)
---
jenkins/bin/cmake.sh | 2 +-
jenkins/bin/cmake_basic.sh | 2 +-
jenkins/bin/github.sh | 2 +-
jenkins/bin/quiche.sh | 2 +-
jenkins/bin/regression.sh | 4 ++--
jenkins/branch/coverage.pipeline | 2 +-
jenkins/github/centos.pipeline | 4 ++--
jenkins/github/debian.pipeline | 4 ++--
jenkins/github/fedora.pipeline | 4 ++--
jenkins/github/osx.pipeline | 2 +-
jenkins/github/rocky-asan.pipeline | 4 ++--
jenkins/github/rocky.pipeline | 4 ++--
jenkins/github/ubuntu.pipeline | 4 ++--
13 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/jenkins/bin/cmake.sh b/jenkins/bin/cmake.sh
index b219603..8d95601 100755
--- a/jenkins/bin/cmake.sh
+++ b/jenkins/bin/cmake.sh
@@ -80,4 +80,4 @@ cmake --install build
#popd
#chmod -R go+w /tmp/ats
-#/tmp/ats/bin/traffic_server -K -R 1
+#/tmp/ats/bin/traffic_server -K -R 3
diff --git a/jenkins/bin/cmake_basic.sh b/jenkins/bin/cmake_basic.sh
index 5c2f542..eb2cdc3 100755
--- a/jenkins/bin/cmake_basic.sh
+++ b/jenkins/bin/cmake_basic.sh
@@ -40,5 +40,5 @@ cmake --install build
pushd build
ctest -j${NPROC} --output-on-failure --no-compress-output -T Test
-/tmp/ats/bin/traffic_server -K -R 1
+/tmp/ats/bin/traffic_server -K -R 3
popd
diff --git a/jenkins/bin/github.sh b/jenkins/bin/github.sh
index ac791ad..c994787 100755
--- a/jenkins/bin/github.sh
+++ b/jenkins/bin/github.sh
@@ -75,7 +75,7 @@ echo -n "Unit tests finished at " && date
echo
echo -n "Regression tests started at " && date
-${INSTALL}/bin/traffic_server -K -k -R 1
+${INSTALL}/bin/traffic_server -K -k -R 3
rval=$?
echo -n "Regression tests finished at " && date
exit $rval
diff --git a/jenkins/bin/quiche.sh b/jenkins/bin/quiche.sh
index 2ca0855..9c80bff 100755
--- a/jenkins/bin/quiche.sh
+++ b/jenkins/bin/quiche.sh
@@ -46,5 +46,5 @@ cmake --install build
#pushd cmake-build-quiche
#ctest -j${NPROC} --output-on-failure --no-compress-output -T Test
-#/tmp/ats_quiche/bin/traffic_server -K -R 1
+#/tmp/ats_quiche/bin/traffic_server -K -R 3
#popd
diff --git a/jenkins/bin/regression.sh b/jenkins/bin/regression.sh
index 41a0482..1fcf61e 100755
--- a/jenkins/bin/regression.sh
+++ b/jenkins/bin/regression.sh
@@ -26,7 +26,7 @@ NPROC=${NPROC:-$(getconf _NPROCESSORS_ONLN)}
#[ -d BUILDS ] && cd BUILDS
#chmod -R go+w /tmp/ats
-#/tmp/ats/bin/traffic_server -K -k -R 1
+#/tmp/ats/bin/traffic_server -K -k -R 3
echo
echo -n "Unit tests started at " && date
@@ -44,7 +44,7 @@ echo -n "Unit tests finished at " && date
echo
echo -n "Regression tests started at " && date
-/tmp/ats/bin/traffic_server -K -R 1
+/tmp/ats/bin/traffic_server -K -R 3
rval=$?
echo -n "Regression tests finished at " && date
exit $rval
diff --git a/jenkins/branch/coverage.pipeline b/jenkins/branch/coverage.pipeline
index 6e292e5..971d03d 100644
--- a/jenkins/branch/coverage.pipeline
+++ b/jenkins/branch/coverage.pipeline
@@ -167,7 +167,7 @@ pipeline {
[ "${RUN_REGRESSION_TESTS}" ==
"true" ] || exit 0
chmod -R go+w .
chmod -R go+w /tmp/ats/
- /tmp/ats/bin/traffic_server -K
-R 1
+ /tmp/ats/bin/traffic_server -K
-R 3
'''
}
echo 'Starting AuTest'
diff --git a/jenkins/github/centos.pipeline b/jenkins/github/centos.pipeline
index d58ffa2..829597b 100644
--- a/jenkins/github/centos.pipeline
+++ b/jenkins/github/centos.pipeline
@@ -76,7 +76,7 @@ pipeline {
cmake --install build
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
- /tmp/ats/bin/traffic_server -K -R 1
+ /tmp/ats/bin/traffic_server -K -R 3
popd
else
# Pre 10 branches only supported autotools.
@@ -85,7 +85,7 @@ pipeline {
make -j4 V=1 Q=
make -j 2 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}
diff --git a/jenkins/github/debian.pipeline b/jenkins/github/debian.pipeline
index 898a9f5..43594c8 100644
--- a/jenkins/github/debian.pipeline
+++ b/jenkins/github/debian.pipeline
@@ -70,7 +70,7 @@ pipeline {
cmake --install build
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
- /tmp/ats/bin/traffic_server -K -R 1
+ /tmp/ats/bin/traffic_server -K -R 3
popd
else
# Pre 10.x branches only supported autotools.
@@ -79,7 +79,7 @@ pipeline {
make -j4 V=1 Q=
make -j 2 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}
diff --git a/jenkins/github/fedora.pipeline b/jenkins/github/fedora.pipeline
index a90c680..b389e0c 100644
--- a/jenkins/github/fedora.pipeline
+++ b/jenkins/github/fedora.pipeline
@@ -73,7 +73,7 @@ pipeline {
cmake --install build
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
- /tmp/ats/bin/traffic_server -K -R 1
+ /tmp/ats/bin/traffic_server -K -R 3
popd
else
# Pre 10.x branches only support autotools.
@@ -87,7 +87,7 @@ pipeline {
make -j4 V=1 Q=
make -j4 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}
diff --git a/jenkins/github/osx.pipeline b/jenkins/github/osx.pipeline
index 351961d..75f8556 100644
--- a/jenkins/github/osx.pipeline
+++ b/jenkins/github/osx.pipeline
@@ -64,7 +64,7 @@ pipeline {
cmake --install build
pushd build
ctest -j3 --output-on-failure --no-compress-output
-T Test
- /tmp/ats/bin/traffic_server -K -R 1
+ /tmp/ats/bin/traffic_server -K -R 3
popd
else
# Pre 10.x branches only support autotools.
diff --git a/jenkins/github/rocky-asan.pipeline
b/jenkins/github/rocky-asan.pipeline
index 18a5526..d6610d8 100644
--- a/jenkins/github/rocky-asan.pipeline
+++ b/jenkins/github/rocky-asan.pipeline
@@ -78,7 +78,7 @@ pipeline {
cmake --install build
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
- /tmp/ats-quiche/bin/traffic_server -K -R 1
+ /tmp/ats-quiche/bin/traffic_server -K -R 3
popd
else
echo "CMake builds are not supported for the this
branch."
@@ -97,7 +97,7 @@ pipeline {
make -j4 V=1 Q=
make -j 2 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}
diff --git a/jenkins/github/rocky.pipeline b/jenkins/github/rocky.pipeline
index 781c8fc..bb5250c 100644
--- a/jenkins/github/rocky.pipeline
+++ b/jenkins/github/rocky.pipeline
@@ -80,7 +80,7 @@ pipeline {
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
LSAN_OPTIONS=suppressions=${src_top}/ci/asan_leak_suppression/regression.txt \
- /tmp/ats-quiche/bin/traffic_server -K -R 1
+ /tmp/ats-quiche/bin/traffic_server -K -R 3
popd
else
echo "CMake builds are not supported for the this
branch."
@@ -98,7 +98,7 @@ pipeline {
make -j4 V=1 Q=
make -j 2 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}
diff --git a/jenkins/github/ubuntu.pipeline b/jenkins/github/ubuntu.pipeline
index f83499f..c97c9fe 100644
--- a/jenkins/github/ubuntu.pipeline
+++ b/jenkins/github/ubuntu.pipeline
@@ -75,7 +75,7 @@ pipeline {
cmake --install build
pushd build
ctest -j4 --output-on-failure --no-compress-output
-T Test
- /tmp/ats/bin/traffic_server -K -R 1
+ /tmp/ats/bin/traffic_server -K -R 3
popd
else
# Pre 10.x branches only support autotools.
@@ -91,7 +91,7 @@ pipeline {
make -j4 V=1 Q=
make -j4 check VERBOSE=Y V=1
make install
- /tmp/ats/bin/traffic_server -K -k -R 1
+ /tmp/ats/bin/traffic_server -K -k -R 3
fi
'''
}