[compiler-rt] [scudo] Add `__scudo_get_info` symbol to export stats to a buffer. (PR #130273)
Christopher Ferris via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 12:19:50 PDT 2025
================
@@ -128,6 +128,46 @@ TEST(ScudoStringsTest, Padding) {
testAgainstLibc<int>("%03d - %03d", -12, -1234);
}
+TEST(ScudoStringsTest, CopyToBuffer) {
+ { // Call with null buffer.
+ scudo::ScopedString Str;
+ Str.append("abc");
+ EXPECT_EQ(4U, scudo::CopyToBuffer(Str, nullptr, 0));
+ }
+
+ { // Empty string.
+ scudo::ScopedString Str;
+ char buf[256] = {'0', '1'};
+ EXPECT_EQ(1U, scudo::CopyToBuffer(Str, buf, sizeof(buf)));
+ EXPECT_STREQ("", buf);
+ EXPECT_EQ(0, buf[0]); // Rest of the buffer remains unchanged.
+ }
+
+ { // Empty string in empty buffer.
+ scudo::ScopedString Str;
+ char buf[256] = {'0', '1'};
+ EXPECT_EQ(1U, scudo::CopyToBuffer(Str, buf, 0));
+ EXPECT_EQ('0', buf[0]); // Nothing changed because provided size is 0.
+ }
+
+ { // Some text fittinh in the buffer.
----------------
cferris1000 wrote:
fitting
https://github.com/llvm/llvm-project/pull/130273
More information about the llvm-commits
mailing list