unittests: Mark test binaries for selftest
authorAndreas Schneider <asn@samba.org>
Thu, 22 Oct 2020 15:41:01 +0000 (17:41 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Fri, 23 Oct 2020 14:09:43 +0000 (14:09 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14550

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>
testsuite/unittests/wscript

index 40fcb01ad574dabf77f2fd705b17e4bd513a6dee..2b4b37b92de26dd97a3c573a7f82d8c21c3d64a1 100644 (file)
@@ -9,7 +9,7 @@ def build(bld):
     bld.SAMBA_BINARY('test_krb5samba',
                      source='test_krb5_samba.c',
                      deps='krb5samba cmocka',
-                     install=False)
+                     for_selftest=True)
 
     bld.SAMBA_BINARY('test_sambafs_srv_pipe',
                      source='test_sambafs_srv_pipe.c',
@@ -18,7 +18,7 @@ def build(bld):
                           RPC_SAMR
                           cmocka
                           ''',
-                     install=False)
+                     for_selftest=True)
 
     bld.SAMBA_BINARY('test_lib_util_modules',
                      source='test_lib_util_modules.c',
@@ -26,7 +26,7 @@ def build(bld):
                           samba-modules
                           cmocka
                           ''',
-                     install=False)
+                     for_selftest=True)
 
     bld.SAMBA_MODULE('rpc_test_dummy_module',
                      source='rpc_test_dummy_module.c',