Lines Matching refs:test_cpp_expr
833 def test_cpp_expr(expr, expected): function
867 test_cpp_expr("0", "(int 0)")
868 test_cpp_expr("1", "(int 1)")
869 test_cpp_expr("-5", "(int -5)")
870 test_cpp_expr("+1", "(int 1)")
871 test_cpp_expr("0U", "(int 0)")
872 test_cpp_expr("015", "(oct 015)")
873 test_cpp_expr("015l", "(oct 015)")
874 test_cpp_expr("0x3e", "(hex 0x3e)")
875 test_cpp_expr("(0)", "(int 0)")
876 test_cpp_expr("1 && 1", "(&& (int 1) (int 1))")
877 test_cpp_expr("1 && 0", "(&& (int 1) (int 0))")
878 test_cpp_expr("EXAMPLE", "(ident EXAMPLE)")
879 test_cpp_expr("EXAMPLE - 3", "(- (ident EXAMPLE) (int 3))")
880 test_cpp_expr("defined(EXAMPLE)", "(defined EXAMPLE)")
881 test_cpp_expr("defined ( EXAMPLE ) ", "(defined EXAMPLE)")
882 test_cpp_expr("!defined(EXAMPLE)", "(! (defined EXAMPLE))")
883 test_cpp_expr("defined(ABC) || defined(BINGO)",
885 test_cpp_expr("FOO(BAR,5)", "(call FOO [BAR,5])")
886 test_cpp_expr("A == 1 || defined(B)",