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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_assert.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/12 23:06:26  vakatov
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef TEST_ASSERT__H
  10. #define TEST_ASSERT__H
  11. /*  $Id: test_assert.h,v 1000.1 2004/06/12 23:06:26 vakatov Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Denis Vakatov
  37.  *
  38.  * File Description:
  39.  *   Setup #NDEBUG and #_DEBUG preprocessor macro in a way that ASSERTs
  40.  *   will be active even in the "Release" mode (it's useful for test apps).
  41.  *
  42.  */
  43. #include <ncbiconf.h>
  44. #if defined(NCBI_OS_MAC) || 
  45.    (defined(NCBI_OS_DARWIN) && defined(NCBI_COMPILER_METROWERKS))
  46. #  include <stdio.h>
  47. #  include <stdlib.h>
  48. #elif defined(NCBI_OS_MSWIN)
  49. #  ifdef   _ASSERT
  50. #    undef _ASSERT
  51. #  endif
  52. #  define  Type aType
  53. #  include <crtdbg.h>
  54. #  include <stdio.h>
  55. #  include <windows.h>
  56. #  undef   Type
  57. /* Suppress popup messages on execution errors.
  58.  * NOTE: Windows-specific, suppresses all error message boxes in both runtime
  59.  * and in debug libraries, as well as all General Protection Fault messages.
  60.  * Environment variable DIAG_SILENT_ABORT must be set to "Y" or "y".
  61.  */
  62. static int _SuppressDiagPopupMessages(void)
  63. {
  64.     /* Check environment variable for silent abort app at error */
  65.     const char* value = getenv("DIAG_SILENT_ABORT");
  66.     if (value  &&  (*value == 'Y'  ||  *value == 'y')) {
  67.         /* Windows GPF errors */
  68.         SetErrorMode(SEM_NOGPFAULTERRORBOX);
  69.         /* Runtime library */
  70.         _set_error_mode(_OUT_TO_STDERR);
  71.         /* Debug library */
  72.         _CrtSetReportFile(_CRT_WARN,   stderr);
  73.         _CrtSetReportMode(_CRT_WARN,   _CRTDBG_MODE_FILE);
  74.         _CrtSetReportFile(_CRT_ERROR,  stderr);
  75.         _CrtSetReportMode(_CRT_ERROR,  _CRTDBG_MODE_FILE);
  76.         _CrtSetReportFile(_CRT_ASSERT, stderr);
  77.         _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
  78.     }
  79. return 0;
  80. }
  81. /* Put this function at startup init level 'V', far enough not to mess up with
  82.  * base RTL init, which happens at preceding levels in alphabetical order.
  83.  */
  84. #  pragma data_seg(".CRT$XIV")
  85. static int (*_SDPM)(void) = _SuppressDiagPopupMessages;
  86. #  pragma data_seg()
  87. #endif /*defined(NCBI_OS_...)*/
  88. #ifdef   NDEBUG
  89. #  undef NDEBUG
  90. #endif
  91. #ifdef   assert
  92. #  undef assert
  93. #endif
  94. /* IRIX stdlib fix (MIPSpro compiler tested): assert.h already included above*/
  95. #ifdef NCBI_OS_IRIX
  96. #  ifdef   __ASSERT_H__
  97. #    undef __ASSERT_H__
  98. #  endif
  99. #endif
  100. /* Likewise on OSF/1 (at least with GCC 3, but this never hurts) */
  101. #ifdef NCBI_OS_OSF1
  102. #  ifdef   _ASSERT_H_
  103. #    undef _ASSERT_H_
  104. #  endif
  105. #endif
  106. /* ...and on Darwin (at least with GCC 3, but this never hurts) */
  107. #ifdef NCBI_OS_DARWIN
  108. #  ifdef   FIXINC_BROKEN_ASSERT_STDLIB_CHECK
  109. #    undef FIXINC_BROKEN_ASSERT_STDLIB_CHECK
  110. #  endif
  111. #endif
  112. #include <assert.h>
  113. #ifdef   _ASSERT
  114. #  undef _ASSERT
  115. #endif
  116. #define  _ASSERT assert
  117. /*
  118.  * --------------------------------------------------------------------------
  119.  * $Log: test_assert.h,v $
  120.  * Revision 1000.1  2004/06/12 23:06:26  vakatov
  121.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  122.  *
  123.  * Revision 1.16  2004/06/10 15:42:19  ivanov
  124.  * _SuppressDiagPopupMessages() returns 'int' to avoid runtime errors on MSVC7
  125.  *
  126.  * Revision 1.15  2003/03/12 21:25:17  lavr
  127.  * More elaborate conditional branch for Mac's Codewarrior
  128.  *
  129.  * Revision 1.14  2003/03/12 20:54:43  lavr
  130.  * Add NCBI_OS_MAC branch and sync include/test and connect/test locations
  131.  *
  132.  * ===========================================================================
  133.  */
  134. #endif  /* TEST_ASSERT__H */