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 27 28 29
|
Description: Disable buggy tests
Author: Philippe SWARTVAGHER <phil.swart@gmx.fr>
Last-Update: 2025-09-02
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
diff --git a/tests/meson.build b/tests/meson.build
index 6b1b80f..05c2df4 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -33,12 +33,12 @@ endforeach
# Unfortunately dictionaries can only contain literal strings.
# As such we have to use indeces instead.
test('boundinbox', test_exes[0], env: test_env)
-test(
- 'objects',
- test_exes[1],
- args: [meson.global_build_root() / 'objects'],
- env: test_env,
-)
+#test(
+ #'objects',
+ #test_exes[1],
+ #args: [meson.global_build_root() / 'objects'],
+ #env: test_env,
+#)
test('testsvg', test_exes[2], env: test_env)
# Not really a test, but just a helper program.
|