github.com/cloudwego/dynamicgo@v0.2.6-0.20240519101509-707f41b6b834/native/test/xassert.h (about)

     1  /*
     2   * Copyright 2023 CloudWeGo Authors.
     3   *
     4   * Licensed under the Apache License, Version 2.0 (the "License");
     5   * you may not use this file except in compliance with the License.
     6   * You may obtain a copy of the License at
     7   *
     8   *     http://www.apache.org/licenses/LICENSE-2.0
     9   *
    10   * Unless required by applicable law or agreed to in writing, software
    11   * distributed under the License is distributed on an "AS IS" BASIS,
    12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13   * See the License for the specific language governing permissions and
    14   * limitations under the License.
    15   */
    16  
    17  #ifndef XASSERT_H
    18  #define XASSERT_H
    19  
    20  #ifndef DEBUG
    21  #define xassert(expr) ((void)0)
    22  #else
    23  #include "xprintf.h"
    24  #define xassert(expr) \
    25      ((expr)           \
    26           ? ((void)0)  \
    27           : _xassert(#expr, __FILE__, __LINE__, __PRETTY_FUNCTION__))
    28  
    29  static void *raise = 0;
    30  static void xabort()
    31  {
    32      *(int *)(raise) = 1;
    33  }
    34  static void _xassert(const char *assertion, const char *file,
    35                       const unsigned line, const char *func)
    36  {
    37      xprintf("%s:%u: %s Assertion `%s' failed.\n",
    38              file, line, func ? func : "?", assertion);
    39      xabort();
    40  }
    41  #endif // DEBUG
    42  
    43  #endif // XASSERT_H