summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-02-16 22:22:32 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2024-02-16 22:22:32 -0500
commit8963604fe2702c79ecbac256d1ae0d9566986549 (patch)
treead788d0474445f58c6d67322f3ec2d090eb2c25e
parentfc29dafd7afffe6fbef764495d281ce3041a1c00 (diff)
test-git-branch: fix HOSTNAME
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rwxr-xr-xci/test-git-branch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/test-git-branch.sh b/ci/test-git-branch.sh
index 254f2f7..f3a912b 100755
--- a/ci/test-git-branch.sh
+++ b/ci/test-git-branch.sh
@@ -139,7 +139,7 @@ run_test_job() {
while (( ${#SUBTESTS[@]} )); do
rm -rf ktest-out/gcov.*
- FULL_LOG=$TEST_NAME.$(HOSTNAME).$(date -Iseconds).log
+ FULL_LOG=$TEST_NAME.$HOSTNAME.$(date -Iseconds).log
for t in ${SUBTESTS[@]}; do
FNAME=$(echo "$t"|tr / .)
@@ -183,7 +183,7 @@ run_test_job() {
if [[ -d ktest-out/gcov.0 ]]; then
echo "Sending gcov results to jobserver"
- LCOV=ktest-out/out/lcov.partial.$TEST_NAME.$(HOSTNAME).$(date -Iseconds)
+ LCOV=ktest-out/out/lcov.partial.$TEST_NAME.$HOSTNAME.$(date -Iseconds)
lcov --capture --quiet --directory ktest-out/gcov.0 --output-file $LCOV
sed -i -e "s_$(pwd)/__" $LCOV