[compiler-rt] r358769 - [HWASan] Added no-FP unit test for register dump.

Mitch Phillips via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 19 10:36:56 PDT 2019


Author: hctim
Date: Fri Apr 19 10:36:56 2019
New Revision: 358769

URL: http://llvm.org/viewvc/llvm-project?rev=358769&view=rev
Log:
[HWASan] Added no-FP unit test for register dump.

Summary: Unit test for D60798.

Reviewers: eugenis

Subscribers: kubamracek, #sanitizers, llvm-commits, pcc

Tags: #sanitizers, #llvm

Differential Revision: https://reviews.llvm.org/D60806

Modified:
    compiler-rt/trunk/test/hwasan/TestCases/register-dump-no-fp.cc

Modified: compiler-rt/trunk/test/hwasan/TestCases/register-dump-no-fp.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/hwasan/TestCases/register-dump-no-fp.cc?rev=358769&r1=358768&r2=358769&view=diff
==============================================================================
--- compiler-rt/trunk/test/hwasan/TestCases/register-dump-no-fp.cc (original)
+++ compiler-rt/trunk/test/hwasan/TestCases/register-dump-no-fp.cc Fri Apr 19 10:36:56 2019
@@ -1,15 +1,15 @@
-// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 -fno-omit-frame-pointer \
-// RUN:   -mno-omit-leaf-frame-pointer -O0 %s -o %t && not %run %t 2>&1 | \
-// RUN:   FileCheck %s --check-prefixes=CHECK
-// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 -fno-omit-frame-pointer \
-// RUN:   -mno-omit-leaf-frame-pointer -O1 %s -o %t && not %run %t 2>&1 | \
-// RUN:   FileCheck %s --check-prefixes=CHECK
-// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 -fno-omit-frame-pointer \
-// RUN:   -mno-omit-leaf-frame-pointer -O2 %s -o %t && not %run %t 2>&1 | \
-// RUN:   FileCheck %s --check-prefixes=CHECK
-// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 -fno-omit-frame-pointer \
-// RUN:   -mno-omit-leaf-frame-pointer -O3 %s -o %t && not %run %t 2>&1 | \
-// RUN:   FileCheck %s --check-prefixes=CHECK
+// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 \
+// RUN:   -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -O0 %s -o %t && \
+// RUN:   not %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK
+// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 \
+// RUN:   -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -O1 %s -o %t && \
+// RUN:   not %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK
+// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 \
+// RUN:   -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -O2 %s -o %t && \
+// RUN:   not %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK
+// RUN: %clangxx_hwasan -ffixed-x10 -ffixed-x20 -ffixed-x27 \
+// RUN:   -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -O3 %s -o %t && \
+// RUN:   not %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK
 // REQUIRES: aarch64-target-arch
 #include <stdlib.h>
 #include <stdio.h>




More information about the llvm-commits mailing list