diff options
author | Kostya Serebryany <kcc@google.com> | 2014-05-23 15:02:06 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2014-05-23 15:02:06 +0000 |
commit | ef769fac90d45e4aeaad1b7cd8fcb9c0e312a08b (patch) | |
tree | 635c141963e22f418f503d44fcea698f6c2915d0 | |
parent | a72efdff9e29a108eebcce81641e75afbc7e22b9 (diff) | |
download | bcm5719-llvm-ef769fac90d45e4aeaad1b7cd8fcb9c0e312a08b.tar.gz bcm5719-llvm-ef769fac90d45e4aeaad1b7cd8fcb9c0e312a08b.zip |
[ubsan] temporary disable testing with -m32 as there are bots that don't support it
llvm-svn: 209517
-rw-r--r-- | compiler-rt/test/ubsan/TestCases/Float/cast-overflow.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compiler-rt/test/ubsan/TestCases/Float/cast-overflow.cpp b/compiler-rt/test/ubsan/TestCases/Float/cast-overflow.cpp index 6f64d1354b7..cc6f9ad1375 100644 --- a/compiler-rt/test/ubsan/TestCases/Float/cast-overflow.cpp +++ b/compiler-rt/test/ubsan/TestCases/Float/cast-overflow.cpp @@ -12,18 +12,18 @@ // RUN: %run %t 9 2>&1 | FileCheck %s --check-prefix=CHECK-9 // FIXME: run all ubsan tests in 32- and 64-bit modes (?). -// RUN: %clangxx -fsanitize=float-cast-overflow -m32 %s -o %t -// RUN: %run %t _ -// RUN: %run %t 0 2>&1 | FileCheck %s --check-prefix=CHECK-0 -// RUN: %run %t 1 2>&1 | FileCheck %s --check-prefix=CHECK-1 -// RUN: %run %t 2 2>&1 | FileCheck %s --check-prefix=CHECK-2 -// RUN: %run %t 3 2>&1 | FileCheck %s --check-prefix=CHECK-3 -// RUN: %run %t 4 2>&1 | FileCheck %s --check-prefix=CHECK-4 -// RUN: %run %t 5 2>&1 | FileCheck %s --check-prefix=CHECK-5 -// RUN: %run %t 6 2>&1 | FileCheck %s --check-prefix=CHECK-6 +// FIXME: %clangxx -fsanitize=float-cast-overflow -m32 %s -o %t +// FIXME: %run %t _ +// FIXME: %run %t 0 2>&1 | FileCheck %s --check-prefix=CHECK-0 +// FIXME: %run %t 1 2>&1 | FileCheck %s --check-prefix=CHECK-1 +// FIXME: %run %t 2 2>&1 | FileCheck %s --check-prefix=CHECK-2 +// FIXME: %run %t 3 2>&1 | FileCheck %s --check-prefix=CHECK-3 +// FIXME: %run %t 4 2>&1 | FileCheck %s --check-prefix=CHECK-4 +// FIXME: %run %t 5 2>&1 | FileCheck %s --check-prefix=CHECK-5 +// FIXME: %run %t 6 2>&1 | FileCheck %s --check-prefix=CHECK-6 // FIXME: %run %t 7 2>&1 | FileCheck %s --check-prefix=CHECK-7 -// RUN: %run %t 8 2>&1 | FileCheck %s --check-prefix=CHECK-8 -// RUN: %run %t 9 2>&1 | FileCheck %s --check-prefix=CHECK-9 +// FIXME: %run %t 8 2>&1 | FileCheck %s --check-prefix=CHECK-8 +// FIXME: %run %t 9 2>&1 | FileCheck %s --check-prefix=CHECK-9 // This test assumes float and double are IEEE-754 single- and double-precision. |