diff options
author | Kuba Mracek <mracek@apple.com> | 2017-01-06 23:39:29 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2017-01-06 23:39:29 +0000 |
commit | b81857a9e0df88829aca8cd60938475bf9e15b48 (patch) | |
tree | fbec155f12542c77553fa23a245cee62b7a572ee | |
parent | 9006d5265136429e81eb9310f2c91892fded06d3 (diff) | |
download | bcm5719-llvm-b81857a9e0df88829aca8cd60938475bf9e15b48.tar.gz bcm5719-llvm-b81857a9e0df88829aca8cd60938475bf9e15b48.zip |
Follow-up for r291277: Increase buffer size in uuid.cc testcase.
2048 should be enough for everyone.
llvm-svn: 291305
-rw-r--r-- | compiler-rt/test/asan/TestCases/Darwin/uuid.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/Darwin/uuid.cc b/compiler-rt/test/asan/TestCases/Darwin/uuid.cc index eaa022036e9..2699f92cc29 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/uuid.cc +++ b/compiler-rt/test/asan/TestCases/Darwin/uuid.cc @@ -9,7 +9,7 @@ #include <string.h> int main(int argc, char *argv[]) { - char buf[256]; + char buf[2048]; snprintf(buf, sizeof(buf), "otool -l %s", argv[0]); system(buf); // CHECK: cmd LC_UUID |