forked from OSchip/llvm-project
Follow-up for r291277: Increase buffer size in uuid.cc testcase.
2048 should be enough for everyone. llvm-svn: 291305
This commit is contained in:
parent
9006d52651
commit
b81857a9e0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue