r263168 - Reenable asm-errors.c
Nico Weber via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 10 14:40:02 PST 2016
Author: nico
Date: Thu Mar 10 16:40:02 2016
New Revision: 263168
URL: http://llvm.org/viewvc/llvm-project?rev=263168&view=rev
Log:
Reenable asm-errors.c
r134811 made the test pass and reenabled it, but r134831
accidentally disabled it again due to a bad merge.
Modified:
cfe/trunk/test/CodeGen/asm-errors.c
Modified: cfe/trunk/test/CodeGen/asm-errors.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/asm-errors.c?rev=263168&r1=263167&r2=263168&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/asm-errors.c (original)
+++ cfe/trunk/test/CodeGen/asm-errors.c Thu Mar 10 16:40:02 2016
@@ -1,8 +1,7 @@
// REQUIRES: x86-registered-target
-// RUN: true
-// UN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s -o /dev/null > %t 2>&1
-// UN: FileCheck %s < %t
+// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s -o /dev/null > %t 2>&1
+// RUN: FileCheck %s < %t
// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-llvm-bc %s -o %t.bc
// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-obj %t.bc -o /dev/null 2>&1 | \
// RUN: FileCheck --check-prefix=CRASH-REPORT %s
More information about the cfe-commits
mailing list