~ubuntu-branches/ubuntu/edgy/ncbi-tools6/edgy

« back to all changes in this revision

Viewing changes to connect/test/test_ncbi_memory_connector.c

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-19 23:28:07 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060719232807-et3cdmcjgmnyleyx
Tags: 6.1.20060507-3ubuntu1
Re-merge with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  $Id: test_ncbi_memory_connector.c,v 6.4 2002/12/04 16:58:49 lavr Exp $
 
1
/*  $Id: test_ncbi_memory_connector.c,v 6.5 2006/03/30 17:46:40 lavr Exp $
2
2
 * ===========================================================================
3
3
 *
4
4
 *                            PUBLIC DOMAIN NOTICE
49
49
    assert(data_file);
50
50
 
51
51
     /* Run the tests */
52
 
    connector = MEMORY_CreateConnector(0);
 
52
    connector = MEMORY_CreateConnector();
53
53
    CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBounceCheck);
54
54
 
55
 
    connector = MEMORY_CreateConnector(0);
 
55
    connector = MEMORY_CreateConnectorEx(0);
56
56
    CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
57
57
 
58
58
    /* Cleanup and Exit */
65
65
/*
66
66
 * --------------------------------------------------------------------------
67
67
 * $Log: test_ncbi_memory_connector.c,v $
 
68
 * Revision 6.5  2006/03/30 17:46:40  lavr
 
69
 * Adjust for lock-less MEMORY_Connector API
 
70
 *
68
71
 * Revision 6.4  2002/12/04 16:58:49  lavr
69
72
 * Move change log to end
70
73
 *