1 /*============================================================================= 2 Boost.Wave: A Standard compliant C++ preprocessor library 3 http://www.boost.org/ 4 5 Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost 6 Software License, Version 1.0. (See accompanying file 7 LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 9 The tests included in this file were initially taken from the mcpp V2.5 10 preprocessor validation suite and were modified to fit into the Boost.Wave 11 unit test requirements. 12 The original files of the mcpp preprocessor are distributed under the 13 license reproduced at the end of this file. 14 =============================================================================*/ 15 16 // Tests operator "defined" in #if or #elif directives. 17 18 #define MACRO_abc abc 19 #define MACRO_0 2 20 #define ZERO_TOKEN 21 22 // 11.1: 23 //R #line 28 "t_5_013.cpp" 24 //R true 25 #if defined a 26 false 27 #else 28 true 29 #endif 30 31 //R #line 34 "t_5_013.cpp" 32 //R true 33 #if defined (MACRO_abc) 34 true 35 #else 36 false 37 #endif 38 39 // 11.2: "defined" is an unary operator whose result is 1 or 0. 40 41 //R #line 46 "t_5_013.cpp" 42 //R true 43 #if defined MACRO_0 * 3 != 3 44 false 45 #else 46 true 47 #endif 48 49 //R #line 54 "t_5_013.cpp" 50 //R true 51 #if (!defined ZERO_TOKEN != 0) || (-defined ZERO_TOKEN != -1) 52 false 53 #else 54 true 55 #endif 56 57 /*- 58 * Copyright (c) 1998, 2002-2005 Kiyoshi Matsui <kmatsui@t3.rim.or.jp> 59 * All rights reserved. 60 * 61 * Redistribution and use in source and binary forms, with or without 62 * modification, are permitted provided that the following conditions 63 * are met: 64 * 1. Redistributions of source code must retain the above copyright 65 * notice, this list of conditions and the following disclaimer. 66 * 2. Redistributions in binary form must reproduce the above copyright 67 * notice, this list of conditions and the following disclaimer in the 68 * documentation and/or other materials provided with the distribution. 69 * 70 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 71 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 72 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 73 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 74 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 75 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 76 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 77 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 78 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 79 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 80 * SUCH DAMAGE. 81 */ 82 83