1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Santiago Vila <sanvila@debian.org>
Date: Wed, 10 Dec 2025 23:51:17 +0100
Subject: Disable self-test
This test currently fails in some common build environments
including Salsa CI and https://reproduce.debian.net/
See especially comment 44 of
https://bugs.debian.org/1122432
---
gusb/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gusb/meson.build b/gusb/meson.build
index 04df85c..610dd3f 100644
--- a/gusb/meson.build
+++ b/gusb/meson.build
@@ -230,7 +230,7 @@ if get_option('tests')
cargs,
],
)
- test('gusb-self-test', e)
+ # test('gusb-self-test', e)
# Umockdev based tests
test_env = environment()
|