[compiler-rt] r325751 - Try to fix the syntax in test
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 21 23:17:01 PST 2018
Author: kamil
Date: Wed Feb 21 23:17:01 2018
New Revision: 325751
URL: http://llvm.org/viewvc/llvm-project?rev=325751&view=rev
Log:
Try to fix the syntax in test
Reported on a buildbot:
Error in XFAIL list:
couldn't parse text: '| arm || aarch64 || mips'
in expression: 'freebsd | arm || aarch64 || mips'
Add || in the place of |
Fallout from D43382
Modified:
compiler-rt/trunk/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc
Modified: compiler-rt/trunk/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc?rev=325751&r1=325750&r2=325751&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc Wed Feb 21 23:17:01 2018
@@ -4,7 +4,7 @@
// RUN: rm log-args-this-* || true
// RUN: XRAY_OPTIONS="patch_premain=true verbosity=1 xray_logfile_base=log-args-this-" %run %t
//
-// XFAIL: freebsd | arm || aarch64 || mips
+// XFAIL: freebsd || arm || aarch64 || mips
// UNSUPPORTED: powerpc64le
#include "xray/xray_interface.h"
#include <cassert>
More information about the llvm-commits
mailing list