From 11e141d61637ac04f7de71141de9d371df728a38 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 24 Sep 2012 00:34:18 +0000 Subject: [PATCH] unittests/AST/StmtPrinterTest.cpp: Suppress a LP64-assumed test, "0x100000000i128 => 4294967296L", for now. LONG_MAX is 2147483647L on common 32 bit and LLP64 (Windows x64). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164478 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/AST/StmtPrinterTest.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/unittests/AST/StmtPrinterTest.cpp b/unittests/AST/StmtPrinterTest.cpp index f4ca312730..0fd1b2e6c3 100644 --- a/unittests/AST/StmtPrinterTest.cpp +++ b/unittests/AST/StmtPrinterTest.cpp @@ -148,7 +148,6 @@ TEST(StmtPrinter, TestMSIntegerLiteral) { " 1i32, -1i32, 1ui32, " " 1i64, -1i64, 1ui64, " " 1i128, -1i128, 1ui128, 1Ui128," - " 0x100000000i128," " 0x10000000000000000i128;" "}", "A", @@ -157,7 +156,6 @@ TEST(StmtPrinter, TestMSIntegerLiteral) { "1L , -1L , 1UL , " "1LL , -1LL , 1ULL , " "1 , -1 , 1U , 1U , " - "4294967296L , " "18446744073709551616i128")); // Should be: with semicolon // WRONG; all 128-bit literals should be printed as 128-bit. -- 2.40.0