diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-01-26 09:28:50 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-01-26 09:28:50 +0000 |
commit | d0a41fead32420714348cd35809cd6d34b304403 (patch) | |
tree | bcc77eb7aa7b7787e20694db36b179ec9c2c87af | |
parent | 6685c08e5f91ab7d40b06d1eeb0943afc0c4ae54 (diff) | |
download | bcm5719-llvm-d0a41fead32420714348cd35809cd6d34b304403.tar.gz bcm5719-llvm-d0a41fead32420714348cd35809cd6d34b304403.zip |
Suppress any warnings from this test. They aren't interesting, and they
end up in the same output file as the layout stuff. There may even be
a race condition which is causing this output to confuse the FileCheck
in some cases. I actually don't know how on earth the parsing of the
layout file even works given that there are diagnostics in the middle of
it. ;]
llvm-svn: 149058
-rw-r--r-- | clang/test/CodeGen/override-layout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/override-layout.c b/clang/test/CodeGen/override-layout.c index 44b58f07781..687cc04e309 100644 --- a/clang/test/CodeGen/override-layout.c +++ b/clang/test/CodeGen/override-layout.c @@ -1,6 +1,6 @@ -// RUN: %clang_cc1 -fdump-record-layouts %s 2> %t.layouts -// RUN: %clang_cc1 -fdump-record-layouts-simple %s > %t.before 2>&1 -// RUN: %clang_cc1 -DPACKED= -DALIGNED16= -fdump-record-layouts-simple -foverride-record-layout=%t.layouts %s > %t.after 2>&1 +// RUN: %clang_cc1 -w -fdump-record-layouts %s 2> %t.layouts +// RUN: %clang_cc1 -w -fdump-record-layouts-simple %s > %t.before 2>&1 +// RUN: %clang_cc1 -w -DPACKED= -DALIGNED16= -fdump-record-layouts-simple -foverride-record-layout=%t.layouts %s > %t.after 2>&1 // RUN: diff %t.before %t.after // RUN: FileCheck %s < %t.after |