[llvm] r285174 - [XRay] Be case-insensitive for error strings
Dean Michael Berris via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 25 22:10:39 PDT 2016
Author: dberris
Date: Wed Oct 26 00:10:39 2016
New Revision: 285174
URL: http://llvm.org/viewvc/llvm-project?rev=285174&view=rev
Log:
[XRay] Be case-insensitive for error strings
On Windows, "no such file or directory" is the default error translation
as opposed to the capitalized form on Linux.
Modified:
llvm/trunk/test/tools/llvm-xray/X86/no-such-file.txt
Modified: llvm/trunk/test/tools/llvm-xray/X86/no-such-file.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-xray/X86/no-such-file.txt?rev=285174&r1=285173&r2=285174&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-xray/X86/no-such-file.txt (original)
+++ llvm/trunk/test/tools/llvm-xray/X86/no-such-file.txt Wed Oct 26 00:10:39 2016
@@ -1,4 +1,4 @@
; RUN: not llvm-xray extract no-such-file 2>&1 | FileCheck %s
; CHECK: llvm-xray: Cannot extract instrumentation map from 'no-such-file'.
-; CHECK-NEXT: No such file or directory
+; CHECK-NEXT: {{[Nn]}}o such file or directory
More information about the llvm-commits
mailing list