test_ncbi_memory_connector.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_memory_connector.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:05:32  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_memory_connector.c,v 1000.0 2003/10/29 17:05:32 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   Standard test for the MEMORY CONNECTOR
  38.  *
  39.  */
  40. #include "ncbi_conntest.h"
  41. #include <connect/ncbi_memory_connector.h>
  42. #include <connect/ncbi_util.h>
  43. /* This header must go last */
  44. #include "test_assert.h"
  45. int main(void)
  46. {
  47.     static STimeout timeout/* = 0 */;
  48.     CONNECTOR       connector;
  49.     FILE*           data_file;
  50.     /* Log and data-log streams */
  51.     CORE_SetLOGFILE(stderr, 0/*false*/);
  52.     data_file = fopen("test_ncbi_memory_connector.log", "wb");
  53.     assert(data_file);
  54.      /* Run the tests */
  55.     connector = MEMORY_CreateConnector(0);
  56.     CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBounceCheck);
  57.     connector = MEMORY_CreateConnector(0);
  58.     CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
  59.     /* Cleanup and Exit */
  60.     fclose(data_file);
  61.     CORE_SetLOG(0);
  62.     return 0;
  63. }
  64. /*
  65.  * --------------------------------------------------------------------------
  66.  * $Log: test_ncbi_memory_connector.c,v $
  67.  * Revision 1000.0  2003/10/29 17:05:32  gouriano
  68.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.4
  69.  *
  70.  * Revision 6.4  2002/12/04 16:58:49  lavr
  71.  * Move change log to end
  72.  *
  73.  * Revision 6.3  2002/03/22 19:47:31  lavr
  74.  * Test_assert.h made last among the include files
  75.  *
  76.  * Revision 6.2  2002/02/20 20:53:48  lavr
  77.  * Use xconntest to perform standard tests
  78.  *
  79.  * Revision 6.1  2002/02/20 19:14:40  lavr
  80.  * Initial revision
  81.  *
  82.  * ==========================================================================
  83.  */