summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2023-02-16 12:52:30 +0000
committerPhilip Withnall <pwithnall@endlessos.org>2023-02-16 12:52:30 +0000
commit0e84e28978477abf0aa0d4dbeec621013dea80f7 (patch)
tree670ca1bfde96e4d2222cbad7d112253b32d4ddb7
parent6ed23087b5455d21562a49a8f40ca2bdfaf22567 (diff)
downloadglib-0e84e28978477abf0aa0d4dbeec621013dea80f7.tar.gz
tests: Don’t run the GObject performance tests under valgrind
They take too long and time out, and are not particularly useful to run under valgrind because they aren’t designed to test code coverage. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--gobject/tests/performance/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/tests/performance/meson.build b/gobject/tests/performance/meson.build
index f747e42ae..2984a6c28 100644
--- a/gobject/tests/performance/meson.build
+++ b/gobject/tests/performance/meson.build
@@ -36,7 +36,7 @@ foreach test_name, extra_args : gobject_tests
install: install,
)
- suite = ['gobject', 'performance'] + extra_args.get('suite', [])
+ suite = ['gobject', 'performance', 'no-valgrind'] + extra_args.get('suite', [])
timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
args = extra_args.get('args', [])