diff options
author | Filipe Cabecinhas <me@filcab.net> | 2015-07-16 05:22:17 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2015-07-16 05:22:17 +0000 |
commit | cc2f70bb3e2f1f940fc542ea04478dba84606946 (patch) | |
tree | c0aa768b897bb7356f4813c356c62b8768ea68e8 /clang/test/Driver/debug-options.c | |
parent | 0d08a7ffba519aa7f21b8ac1e2194bf348b34eea (diff) | |
download | bcm5719-llvm-cc2f70bb3e2f1f940fc542ea04478dba84606946.tar.gz bcm5719-llvm-cc2f70bb3e2f1f940fc542ea04478dba84606946.zip |
Actually "RUN:" the tests...
llvm-svn: 242383
Diffstat (limited to 'clang/test/Driver/debug-options.c')
-rw-r--r-- | clang/test/Driver/debug-options.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/clang/test/Driver/debug-options.c b/clang/test/Driver/debug-options.c index 50461798efd..b55f2ccb66c 100644 --- a/clang/test/Driver/debug-options.c +++ b/clang/test/Driver/debug-options.c @@ -2,30 +2,30 @@ // rdar://10383444 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -g2 %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -g3 %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -ggdb %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -ggdb1 %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -ggdb3 %s -target x86_64-linux-gnu 2>&1 \ - | FileCheck -check-prefix=G %s +// RUN: | FileCheck -check-prefix=G %s // RUN: %clang -### -c -g %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -g2 %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -g3 %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -ggdb %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -ggdb1 %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -ggdb3 %s -target x86_64-apple-darwin 2>&1 \ - | FileCheck -check-prefix=G_DARWIN %s +// RUN: | FileCheck -check-prefix=G_DARWIN %s // RUN: %clang -### -c -gdwarf-2 %s 2>&1 | FileCheck -check-prefix=G_D2 %s // |