summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2021-06-16 21:10:36 -0500
committerMichael Catanzaro <mcatanzaro@redhat.com>2021-06-16 21:10:36 -0500
commitdce38b1642117be8cde2c0451981105af3b0ee49 (patch)
tree042296989689f000de234cf0ffdb1319da5027f1
parent132d64db4dff498863ec526eb3b360bf9e8e11e8 (diff)
downloadglib-dce38b1642117be8cde2c0451981105af3b0ee49.tar.gz
tests: mark more slow tests as slowmcatanzaro/slow
Some of these tests take an order of magnitude more time to execute than other tests that are marked slow. There are several other slower tests that could possibly be moved to the slow suite as well. These are just the most blatant ones.
-rw-r--r--gio/tests/meson.build9
-rw-r--r--glib/tests/meson.build8
-rw-r--r--gobject/tests/meson.build4
-rw-r--r--tests/meson.build12
4 files changed, 25 insertions, 8 deletions
diff --git a/gio/tests/meson.build b/gio/tests/meson.build
index 98d1401d0..45281a04f 100644
--- a/gio/tests/meson.build
+++ b/gio/tests/meson.build
@@ -58,7 +58,9 @@ gio_tests = {
'fileattributematcher' : {},
'filter-streams' : {},
'giomodule' : {},
- 'gsubprocess' : {},
+ 'gsubprocess' : {
+ 'suite' : ['slow'],
+ },
'g-file' : {},
'g-file-info' : {},
'g-icon' : {},
@@ -70,7 +72,10 @@ gio_tests = {
'memory-monitor' : {},
'memory-output-stream' : {},
'mount-operation' : {},
- 'network-address' : {'extra_sources': ['mock-resolver.c']},
+ 'network-address' : {
+ 'extra_sources': ['mock-resolver.c'],
+ 'suite' : ['slow'],
+ },
'network-monitor' : {},
'network-monitor-race' : {},
'permission' : {},
diff --git a/glib/tests/meson.build b/glib/tests/meson.build
index c77ccdd14..1b8563025 100644
--- a/glib/tests/meson.build
+++ b/glib/tests/meson.build
@@ -101,7 +101,9 @@ glib_tests = {
'test-printf' : {},
'thread' : {},
'thread-pool' : {},
- 'timeout' : {},
+ 'timeout' : {
+ 'suite' : ['slow'],
+ },
'timer' : {},
'tree' : {},
'utf8-performance' : {},
@@ -111,7 +113,9 @@ glib_tests = {
'utils' : {},
'unicode' : {},
'uri' : {},
- '1bit-mutex' : {},
+ '1bit-mutex' : {
+ 'suite' : ['slow'],
+ },
'1bit-emufutex' : {
'source' : '1bit-mutex.c',
'c_args' : ['-DTEST_EMULATED_FUTEX'],
diff --git a/gobject/tests/meson.build b/gobject/tests/meson.build
index 8837f1a65..448982c5b 100644
--- a/gobject/tests/meson.build
+++ b/gobject/tests/meson.build
@@ -31,7 +31,9 @@ gobject_tests = {
'boxed' : {},
'enums' : {},
'param' : {},
- 'threadtests' : {},
+ 'threadtests' : {
+ 'suite' : ['slow'],
+ },
'dynamictests' : {},
'binding' : {},
'properties' : {},
diff --git a/tests/meson.build b/tests/meson.build
index 6741f8f52..003176095 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -20,7 +20,9 @@ tests = {
'testgdate' : {},
'datetime' : {},
'bit-test' : {},
- 'child-test' : {},
+ 'child-test' : {
+ 'suite' : ['slow'],
+ },
'completion-test' : {},
'dirname-test' : {},
'file-test' : {},
@@ -29,7 +31,9 @@ tests = {
'mainloop-test' : {},
'mapping-test' : {},
'onceinit' : {},
- 'asyncqueue-test' : {},
+ 'asyncqueue-test' : {
+ 'suite' : ['slow'],
+ },
'qsort-test' : {},
'relation-test' : {},
'slice-concurrent' : {},
@@ -38,7 +42,9 @@ tests = {
},
'sources' : {},
'spawn-test' : {},
- 'thread-test' : {},
+ 'thread-test' : {
+ 'suite' : ['slow'],
+ },
'threadpool-test' : {'suite' : ['slow']},
'type-test' : {},
'unicode-caseconv' : {},