From 26f98e42209cc9f10973ba8e9c958baf9e0bfaa6 Mon Sep 17 00:00:00 2001 From: Filipe Cabecinhas Date: Thu, 16 Jul 2015 05:22:17 +0000 Subject: [PATCH] Actually "RUN:" the tests... git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242383 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Driver/debug-options.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/Driver/debug-options.c b/test/Driver/debug-options.c index 50461798ef..b55f2ccb66 100644 --- a/test/Driver/debug-options.c +++ b/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 // -- 2.40.0