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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_fstream_pushback.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:42:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_fstream_pushback.cpp,v 1000.2 2004/06/01 19:42:43 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.  *   Test UTIL_PushbackStream() interface.
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include "pbacktest.hpp"
  42. #include <corelib/ncbidiag.hpp>
  43. #include <stdio.h>                 // remove()
  44. #include <test/test_assert.h>  /* This header must go last */
  45. int main(int argc, char* argv[])
  46. {
  47.     USING_NCBI_SCOPE;
  48.     static const char filename[] = "test_fstream_pushback.data";
  49.     SetDiagTrace(eDT_Enable);
  50.     SetDiagPostLevel(eDiag_Info);
  51.     SetDiagPostFlag(eDPF_All);
  52.     CNcbiFstream fs(filename,
  53.                     IOS_BASE::in    | IOS_BASE::out   |
  54.                     IOS_BASE::trunc | IOS_BASE::binary);
  55.     int ret = TEST_StreamPushback(fs,
  56.                                   argc > 1 ? (unsigned int) atoi(argv[1]) : 0,
  57.                                   true/*rewind*/);
  58.     if (ret == 0)
  59.         remove(filename);
  60.     return ret;
  61. }
  62. /*
  63.  * ==========================================================================
  64.  * $Log: test_fstream_pushback.cpp,v $
  65.  * Revision 1000.2  2004/06/01 19:42:43  gouriano
  66.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  67.  *
  68.  * Revision 1.9  2004/05/17 21:09:26  gorelenk
  69.  * Added include of PCH ncbi_pch.hpp
  70.  *
  71.  * Revision 1.8  2003/11/21 19:59:16  lavr
  72.  * Minor code reindentation due to the last change
  73.  *
  74.  * Revision 1.7  2003/11/21 16:55:32  vasilche
  75.  * Use correct CNcbiFstream instead of fstream (esp. crucial on MSVC).
  76.  *
  77.  * Revision 1.6  2002/04/16 18:52:15  ivanov
  78.  * Centralize threatment of assert() in tests.
  79.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  80.  *
  81.  * Revision 1.5  2002/03/19 21:57:19  lavr
  82.  * +IOS_BASE::binary in file open
  83.  *
  84.  * Revision 1.4  2002/02/05 21:45:19  lavr
  85.  * Included header files rearranged
  86.  *
  87.  * Revision 1.3  2002/02/05 16:06:41  lavr
  88.  * List of included header files revised; Use macro IOS_BASE instead of raw ios
  89.  *
  90.  * Revision 1.2  2002/02/04 20:24:04  lavr
  91.  * Remove data file if successful
  92.  *
  93.  * Revision 1.1  2002/01/29 16:02:19  lavr
  94.  * Initial revision
  95.  *
  96.  * ==========================================================================
  97.  */