~noskcaj/ubuntu/vivid/gnome-keyring/3.15.90

« back to all changes in this revision

Viewing changes to egg/tests/test-dh.c

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach
  • Date: 2012-05-14 22:13:02 UTC
  • mfrom: (1.3.1)
  • mto: (80.2.8 experimental) (1.1.77)
  • mto: This revision was merged to the branch mainline in revision 148.
  • Revision ID: package-import@ubuntu.com-20120514221302-0l3gjmqpe6xopond
ImportĀ upstreamĀ versionĀ 3.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "config.h"
25
25
 
26
 
#include "egg-dh.h"
27
 
#include "egg-secure-memory.h"
28
 
#include "egg-testing.h"
 
26
#include "egg/egg-dh.h"
 
27
#include "egg/egg-secure-memory.h"
 
28
#include "egg/egg-testing.h"
29
29
 
30
30
#include <stdlib.h>
31
31
#include <stdio.h>
191
191
{
192
192
        g_test_init (&argc, &argv, NULL);
193
193
 
194
 
        g_test_add_func ("/dh/perform", test_perform);
195
 
        g_test_add_func ("/dh/short_pair", test_short_pair);
 
194
        if (!g_test_quick ()) {
 
195
                g_test_add_func ("/dh/perform", test_perform);
 
196
                g_test_add_func ("/dh/short_pair", test_short_pair);
 
197
        }
 
198
 
196
199
        g_test_add_func ("/dh/default_768", test_default_768);
197
200
        g_test_add_func ("/dh/default_1024", test_default_1024);
198
201
        g_test_add_func ("/dh/default_1536", test_default_1536);