Add new test case
[official-gcc.git] / libjava / include / java-assert.h
blob1d3a49bfa384545f88a53f895cbdc0028050362c
1 // java-assert.h - Header file holding assertion definitions. -*- c++ -*-
3 /* Copyright (C) 1998, 1999, 2010 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 #ifndef __JAVA_ASSERT_H__
12 #define __JAVA_ASSERT_H__
14 // This is a libgcj implementation header.
16 void _Jv_Abort (const char *, const char *, int, const char *)
17 __attribute__ ((__noreturn__));
19 #ifdef __GCJ_DEBUG
20 #define _Jv_AssertDoCall(Message) _Jv_Abort (__FUNCTION__, __FILE__, __LINE__, Message)
22 #define JvAssertMessage(Expr, Message) \
23 do { if (! (Expr)) _Jv_AssertDoCall (Message); } while (0)
24 #define JvAssert(Expr) \
25 do { if (! (Expr)) _Jv_AssertDoCall (# Expr); } while (0)
27 #define JvFail(Message) _Jv_AssertDoCall (Message)
29 #else /* __GCJ_DEBUG */
31 #define _Jv_AssertDoCall(Message)
32 #define JvAssertMessage(Expr, Message) (void) sizeof (Expr)
33 #define JvAssert(Expr) (void) sizeof (Expr)
34 #define JvFail(Message) _Jv_Abort (0, 0, 0, Message)
36 #endif /* not __GCJ_DEBUG */
38 #endif /* __JAVA_ASSERT_H__ */