about summary refs log tree commit diff
path: root/src/libnm-client-impl/tests/meson.build
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2025-12-13 13:49:03 +0100
committerMichael Biebl <biebl@debian.org>2025-12-13 13:49:03 +0100
commitb5001976dbff19f014171eed4a482e28ae7ec0f5 (patch)
tree64fbd4ff0dd3c92b6e78fa4172c9f57a2b20e1fa /src/libnm-client-impl/tests/meson.build
parentdef61b130ab011561ed66a1638a41d59c23b4710 (diff)
parent6de29285e533f4fec22a219013f3687edb6b7399 (diff)
Update upstream source from tag 'upstream/1.54.3'
Update to upstream version '1.54.3'
with Debian dir 29de9f9896550eb82236dfd0adfd428a49c51043
Diffstat (limited to 'src/libnm-client-impl/tests/meson.build')
-rw-r--r--src/libnm-client-impl/tests/meson.build16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/libnm-client-impl/tests/meson.build b/src/libnm-client-impl/tests/meson.build
index 42e9883e..500504db 100644
--- a/src/libnm-client-impl/tests/meson.build
+++ b/src/libnm-client-impl/tests/meson.build
@@ -5,6 +5,7 @@ test_units = [
   'test-nm-client',
   'test-remote-settings-client',
   'test-secret-agent',
+  'test-copy-cert-as-user'
 ]
 
 foreach test_unit: test_units
@@ -37,12 +38,15 @@ foreach test_unit: test_units
     ],
   )
 
-  test(
-    'src/libnm-client-impl/tests/' + test_unit,
-    test_script,
-    timeout: 90,
-    args: test_args + [exe.full_path()],
-  )
+  # test-copy-cert-as-user is a manual test, don't run it automatically
+  if test_unit != 'test-copy-cert-as-user'
+    test(
+      'src/libnm-client-impl/tests/' + test_unit,
+      test_script,
+      timeout: 90,
+      args: test_args + [exe.full_path()],
+    )
+  endif
 endforeach
 
 if enable_introspection