mirror of
https://github.com/curl/curl.git
synced 2026-08-26 17:43:31 +03:00
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:
parent
ce329affa7
commit
d077d5473d
2 changed files with 48 additions and 48 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue