diff options
author | Toni <matzeton@googlemail.com> | 2024-02-03 11:53:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-03 11:53:49 +0100 |
commit | b59994fa208663dce604ba0b7ee537228bba83a9 (patch) | |
tree | 515b40fa094090cde2ae5f1793732a20305da1d2 /tests | |
parent | 9af2b9d815632fc4d28fcd4306f5599e15b237ef (diff) |
Completly disable all pthread related code in the library if `USE_GLOBAL_CONTEXT` macro is not defined. (#2302)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/do.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in index dde8587f9..086e03c9c 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -103,7 +103,7 @@ check_results() { done fi if [ $SKIP_PCAP -eq 1 ]; then - printf "%-32s\tSKIPPED\n" "$f" + printf "%-48s\tSKIPPED\n" "$f" continue fi @@ -165,7 +165,7 @@ for d in $(find ./cfgs/* -type d -maxdepth 0 2>/dev/null) ; do done fi if [ $SKIP_CFG -eq 1 ]; then - printf "Configuration \""$(basename $d)"\" \tSKIPPED\n" + printf "Configuration \""$(basename $d)"\" %-18s\tSKIPPED\n" continue fi |