From f8289cebcc764288d19a9a999234cfe15a1614c4 Mon Sep 17 00:00:00 2001 From: christianEQ Date: Fri, 11 Jun 2021 18:19:59 +0000 Subject: [PATCH] removed unreliable musl test and left only accurate new one Former-commit-id: 386be8990a83fcc5d57aa20a268544a877c2cfd7 --- tests/integration/logging.tcl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/integration/logging.tcl b/tests/integration/logging.tcl index 742471e0b..40713ed2e 100644 --- a/tests/integration/logging.tcl +++ b/tests/integration/logging.tcl @@ -1,12 +1,10 @@ set system_name [string tolower [exec uname -s]] -# ldd --version returns 1 under musl for unknown reasons. If this check stops working, that may be why -set is_musl [catch {exec ldd --version}] set system_supported 0 # We only support darwin or Linux with glibc if {$system_name eq {darwin}} { set system_supported 1 -} elseif {$system_name eq {linux} && $is_musl eq 0} { +} elseif {$system_name eq {linux}} { # Avoid the test on libmusl, which does not support backtrace set ldd [exec ldd src/keydb-server] if {![string match {*libc.musl*} $ldd]} {