~ubuntu-branches/ubuntu/oneiric/libgnome-keyring/oneiric-201109181305

« back to all changes in this revision

Viewing changes to library/tests/run-auto-test.c

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Josselin Mouette
  • Date: 2011-04-21 19:35:19 UTC
  • mfrom: (0.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110421193519-cukx1vu0olus12tk
Tags: 3.0.0-2
[ Josselin Mouette ]
Break gnome-keyring < 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This is auto-generated code. Edit at your own peril. */
2
 
#include "tests/gtest-helpers.h"
3
 
#include "run-auto-test.h"
4
 
 
5
 
static void start_tests (void) {
6
 
        start_setup_daemon ();
7
 
}
8
 
 
9
 
static void stop_tests (void) {
10
 
        stop_setup_daemon ();
11
 
}
12
 
 
13
 
static void initialize_tests (void) {
14
 
        g_test_add("/test-memory/alloc_free", int, NULL, NULL, test_alloc_free, NULL);
15
 
        g_test_add("/test-memory/alloc_two", int, NULL, NULL, test_alloc_two, NULL);
16
 
        g_test_add("/test-memory/realloc", int, NULL, NULL, test_realloc, NULL);
17
 
        g_test_add("/test-memory/realloc_across", int, NULL, NULL, test_realloc_across, NULL);
18
 
        g_test_add("/test-keyrings/remove_incomplete", int, NULL, NULL, test_remove_incomplete, NULL);
19
 
        g_test_add("/test-keyrings/create_keyring", int, NULL, NULL, test_create_keyring, NULL);
20
 
        g_test_add("/test-keyrings/create_keyring_already_exists", int, NULL, NULL, test_create_keyring_already_exists, NULL);
21
 
        g_test_add("/test-keyrings/set_default_keyring", int, NULL, NULL, test_set_default_keyring, NULL);
22
 
        g_test_add("/test-keyrings/delete_keyring", int, NULL, NULL, test_delete_keyring, NULL);
23
 
        g_test_add("/test-keyrings/recreate_keyring", int, NULL, NULL, test_recreate_keyring, NULL);
24
 
        g_test_add("/test-keyrings/create_list_items", int, NULL, NULL, test_create_list_items, NULL);
25
 
        g_test_add("/test-keyrings/find_keyrings", int, NULL, NULL, test_find_keyrings, NULL);
26
 
        g_test_add("/test-keyrings/find_invalid", int, NULL, NULL, test_find_invalid, NULL);
27
 
        g_test_add("/test-keyrings/lock_keyrings", int, NULL, NULL, test_lock_keyrings, NULL);
28
 
        g_test_add("/test-keyrings/change_password", int, NULL, NULL, test_change_password, NULL);
29
 
        g_test_add("/test-keyrings/keyring_info", int, NULL, NULL, test_keyring_info, NULL);
30
 
        g_test_add("/test-keyrings/list_keyrings", int, NULL, NULL, test_list_keyrings, NULL);
31
 
        g_test_add("/test-keyrings/keyring_grant_access", int, NULL, NULL, test_keyring_grant_access, NULL);
32
 
        g_test_add("/test-keyrings/store_password", int, NULL, NULL, test_store_password, NULL);
33
 
        g_test_add("/test-keyrings/find_password", int, NULL, NULL, test_find_password, NULL);
34
 
        g_test_add("/test-keyrings/find_no_password", int, NULL, NULL, test_find_no_password, NULL);
35
 
        g_test_add("/test-keyrings/delete_password", int, NULL, NULL, test_delete_password, NULL);
36
 
        g_test_add("/test-keyrings/cleanup", int, NULL, NULL, test_cleanup, NULL);
37
 
        g_test_add("/test-other/set_display", int, NULL, NULL, test_set_display, NULL);
38
 
        g_test_add("/test-other/setup_environment", int, NULL, NULL, test_setup_environment, NULL);
39
 
        g_test_add("/test-other/result_string", int, NULL, NULL, test_result_string, NULL);
40
 
        g_test_add("/test-other/is_available", int, NULL, NULL, test_is_available, NULL);
41
 
}
42
 
 
43
 
#include "tests/gtest-helpers.c"