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 valid operators in #if expression. 17 18 // Valid operators are (precedence in this order) : 19 // defined, (unary)+, (unary)-, ~, !, 20 // *, /, %, 21 // +, -, 22 // <<, >>, 23 // <, >, <=, >=, 24 // ==, !=, 25 // &, 26 // ^, 27 // |, 28 // &&, 29 // ||, 30 // ? : 31 32 // 13.1: Bit shift. 33 //R #line 38 "t_5_015.cpp" 34 //R true 35 #if 1 << 2 != 4 || 8 >> 1 != 4 36 "Bad arithmetic of <<, >> operators." 37 #else 38 true 39 #endif 40 41 // 13.2: Bitwise operators. 42 //R #line 47 "t_5_015.cpp" 43 //R true 44 #if (3 ^ 5) != 6 || (3 | 5) != 7 || (3 & 5) != 1 45 "Bad arithmetic of ^, |, & operators." 46 #else 47 true 48 #endif 49 50 // 13.3: Result of ||, && operators is either of 1 or 0. 51 //R #line 56 "t_5_015.cpp" 52 //R true 53 #if (2 || 3) != 1 || (2 && 3) != 1 || (0 || 4) != 1 || (0 && 5) != 0 54 "Bad arithmetic of ||, && operators." 55 #else 56 true 57 #endif 58 59 // 13.4: ?, : operator. 60 //R #line 65 "t_5_015.cpp" 61 //R true 62 #if (0 ? 1 : 2) != 2 63 "Bad arithmetic of ?: operator."; 64 #else 65 true 66 #endif 67 68 /*- 69 * Copyright (c) 1998, 2002-2005 Kiyoshi Matsui <kmatsui@t3.rim.or.jp> 70 * All rights reserved. 71 * 72 * Redistribution and use in source and binary forms, with or without 73 * modification, are permitted provided that the following conditions 74 * are met: 75 * 1. Redistributions of source code must retain the above copyright 76 * notice, this list of conditions and the following disclaimer. 77 * 2. Redistributions in binary form must reproduce the above copyright 78 * notice, this list of conditions and the following disclaimer in the 79 * documentation and/or other materials provided with the distribution. 80 * 81 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 82 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 83 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 84 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 85 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 86 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 87 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 88 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 89 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 90 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 91 * SUCH DAMAGE. 92 */ 93 94