[libcxx-commits] [libcxxabi] 96a979c - Fix test for D77924.
Elliott Hughes via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Aug 24 15:33:16 PDT 2020
Author: Elliott Hughes
Date: 2020-08-24T15:32:58-07:00
New Revision: 96a979c0c2950d118da48ac3307e279a41c5a945
URL: https://github.com/llvm/llvm-project/commit/96a979c0c2950d118da48ac3307e279a41c5a945
DIFF: https://github.com/llvm/llvm-project/commit/96a979c0c2950d118da48ac3307e279a41c5a945.diff
LOG: Fix test for D77924.
The trailing 'L' was missing in the expectation.
Differential Revision: https://reviews.llvm.org/D86321
Added:
Modified:
libcxxabi/test/test_demangle.pass.cpp
Removed:
################################################################################
diff --git a/libcxxabi/test/test_demangle.pass.cpp b/libcxxabi/test/test_demangle.pass.cpp
index 236c1d96b726..fd84d3bca1a1 100644
--- a/libcxxabi/test/test_demangle.pass.cpp
+++ b/libcxxabi/test/test_demangle.pass.cpp
@@ -29842,7 +29842,7 @@ struct FPLiteralCase {
#if LDBL_FP128
// This was found by libFuzzer+HWASan on aarch64 Android.
{"1\006ILeeeEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE",
- {"\x6<-0x1.cecececececececececececececep+11983"}},
+ {"\x6<-0x1.cecececececececececececececep+11983L>"}},
#endif
};
const unsigned NF = sizeof(fp_literal_cases) / sizeof(fp_literal_cases[0]);
More information about the libcxx-commits
mailing list