]> granicus.if.org Git - p11-kit/commitdiff
Set strict debug preconditions during testing
authorStef Walter <stefw@gnome.org>
Mon, 10 Dec 2012 10:13:01 +0000 (11:13 +0100)
committerStef Walter <stefw@gnome.org>
Wed, 9 Jan 2013 12:49:44 +0000 (13:49 +0100)
common/tests/test-attrs.c
p11-kit/tests/conf-test.c
p11-kit/tests/pin-test.c
p11-kit/tests/progname-test.c
p11-kit/tests/test-init.c
p11-kit/tests/test-modules.c
p11-kit/tests/uri-test.c

index e358edfd1ca64d4b80af60526a6685041c03227f..445695f605661a17fce7b262e35bec7d73b2027b 100644 (file)
@@ -40,6 +40,7 @@
 #include <string.h>
 
 #include "attrs.h"
+#include "debug.h"
 
 static void
 test_count (CuTest *tc)
@@ -486,6 +487,9 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
+       p11_debug_init ();
+
        SUITE_ADD_TEST (suite, test_count);
        SUITE_ADD_TEST (suite, test_build_one);
        SUITE_ADD_TEST (suite, test_build_two);
index 4ea1313350a4a3cd08ccaf8f36a1433a59f95575..ab3b31d9faa069b55caa02f1ac518070cf90e68b 100644 (file)
@@ -385,6 +385,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_library_init ();
 
        SUITE_ADD_TEST (suite, test_parse_conf_1);
index 5427f8beee0b06e1a66bdae39ba069bef6b0ef65..1541547b37267a86f25cc68836cef4ce4a8962ab 100644 (file)
@@ -302,6 +302,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_library_init ();
 
        SUITE_ADD_TEST (suite, test_pin_register_unregister);
index bd37400f19d710567c7fed2527f13cf8c48de497..6ea373c6fe9d99ed30f54458fa4ac865142b088f 100644 (file)
@@ -81,6 +81,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_library_init ();
 
        SUITE_ADD_TEST (suite, test_progname_default);
index 5861bbf89d1b526a8d54988822f9b630f2dbb09a..76646668e5553fdf166445972b5a43a7f80c8319 100644 (file)
@@ -295,6 +295,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_mutex_init (&race_mutex);
        mock_module_init ();
        p11_library_init ();
index 159e04effde6473cd55d2b45d5ae0fa9f1a9372e..5ac6192f71724952f5a724da8705df16c53c77f0 100644 (file)
@@ -226,6 +226,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_library_init ();
 
        SUITE_ADD_TEST (suite, test_no_duplicates);
index ba4c634102e2b4190bcc8a0749e2b224c858e6c2..19204123300ba0cb0cdbaf79da88dc09951b7562 100644 (file)
@@ -1172,6 +1172,7 @@ main (void)
        CuSuite* suite = CuSuiteNew ();
        int ret;
 
+       setenv ("P11_KIT_STRICT", "1", 1);
        p11_library_init ();
 
        SUITE_ADD_TEST (suite, test_uri_parse);