test1554: make test output XML-friendly

Meaning no `<` and `>` characters.
Reducing the number of `xmllint` failures by 1.

Closes #19496
This commit is contained in:
Viktor Szakats 2025-11-12 16:05:52 +01:00
parent ce329affa7
commit d077d5473d
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 48 additions and 48 deletions

View file

@ -44,7 +44,7 @@ static void t1554_test_lock(CURL *curl, curl_lock_data data,
(void)data;
(void)laccess;
(void)useptr;
curl_mprintf("-> Mutex lock %s\n", ldata_names[data]);
curl_mprintf("-] Mutex lock %s\n", ldata_names[data]);
}
static void t1554_test_unlock(CURL *curl, curl_lock_data data, void *useptr)
@ -52,7 +52,7 @@ static void t1554_test_unlock(CURL *curl, curl_lock_data data, void *useptr)
(void)curl;
(void)data;
(void)useptr;
curl_mprintf("<- Mutex unlock %s\n", ldata_names[data]);
curl_mprintf("[- Mutex unlock %s\n", ldata_names[data]);
}
/* test function */