[tests] Don't compile CFI C tests in C++ mode.
authorAlexey Samsonov <vonosmas@gmail.com>
Wed, 24 Feb 2016 00:16:57 +0000 (00:16 +0000)
committerAlexey Samsonov <vonosmas@gmail.com>
Wed, 24 Feb 2016 00:16:57 +0000 (00:16 +0000)
llvm-svn: 261708

compiler-rt/test/cfi/icall/bad-signature.c
compiler-rt/test/cfi/icall/external-call.c
compiler-rt/test/cfi/lit.cfg

index 43de117..183e627 100644 (file)
@@ -1,10 +1,10 @@
-// RUN: %clangxx -o %t1 %s
+// RUN: %clang -o %t1 %s
 // RUN: %t1 2>&1 | FileCheck --check-prefix=NCFI %s
 
-// RUN: %clangxx_cfi -o %t2 %s
+// RUN: %clang_cfi -o %t2 %s
 // RUN: %expect_crash %t2 2>&1 | FileCheck --check-prefix=CFI %s
 
-// RUN: %clangxx_cfi_diag -g -o %t3 %s
+// RUN: %clang_cfi_diag -g -o %t3 %s
 // RUN: %t3 2>&1 | FileCheck --check-prefix=CFI-DIAG %s
 
 #include <stdio.h>
@@ -18,7 +18,7 @@ int main() {
   fprintf(stderr, "1\n");
 
   // CFI-DIAG: runtime error: control flow integrity check for type 'void (int)' failed during indirect function call
-  // CFI-DIAG: f() defined here
+  // CFI-DIAG: f defined here
   ((void (*)(int))f)(42); // UB here
 
   // CFI-NOT: 2
index 43fc252..e90c7e0 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clangxx_cfi -o %t1 %s
+// RUN: %clang_cfi -lm -o %t1 %s
 // RUN: %t1 c 1 2>&1 | FileCheck --check-prefix=CFI %s
 // RUN: %t1 s 2 2>&1 | FileCheck --check-prefix=CFI %s
 
index 687c80f..da210c6 100644 (file)
@@ -7,11 +7,17 @@ config.test_source_root = os.path.dirname(__file__)
 
 clangxx = ' '.join([config.clang] + config.cxx_mode_flags)
 
+config.substitutions.append((r"%clang ", ' '.join([config.clang]) + ' '))
 config.substitutions.append((r"%clangxx ", clangxx + ' '))
 if config.lto_supported:
-  clangxx_cfi = ' '.join(config.lto_launch + [clangxx] + config.lto_flags + ['-flto -fsanitize=cfi '])
-  clangxx_cfi_diag = clangxx_cfi + '-fno-sanitize-trap=cfi -fsanitize-recover=cfi '
+  clang_cfi = ' '.join(config.lto_launch + [config.clang] + config.lto_flags + ['-flto -fsanitize=cfi '])
+  clangxx_cfi = clang_cfi + ' '.join(config.cxx_mode_flags) + ' '
+  diag_flags = '-fno-sanitize-trap=cfi -fsanitize-recover=cfi '
+  clang_cfi_diag = clang_cfi + diag_flags
+  clangxx_cfi_diag = clangxx_cfi + diag_flags
+  config.substitutions.append((r"%clang_cfi ", clang_cfi))
   config.substitutions.append((r"%clangxx_cfi ", clangxx_cfi))
+  config.substitutions.append((r"%clang_cfi_diag ", clang_cfi_diag))
   config.substitutions.append((r"%clangxx_cfi_diag ", clangxx_cfi_diag))
   config.substitutions.append((r"%clangxx_cfi_dso ", clangxx_cfi + '-fsanitize-cfi-cross-dso '))
   config.substitutions.append((r"%clangxx_cfi_dso_diag ", clangxx_cfi_diag + '-fsanitize-cfi-cross-dso '))