[compiler-rt] r308701 - [XRay][compiler-rt] Update test to account for change in logging format.
Dean Michael Berris via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 20 17:30:05 PDT 2017
Author: dberris
Date: Thu Jul 20 17:30:04 2017
New Revision: 308701
URL: http://llvm.org/viewvc/llvm-project?rev=308701&view=rev
Log:
[XRay][compiler-rt] Update test to account for change in logging format.
Fixes build breakage for some bots after we've started logging both the
process id and the thread id.
Modified:
compiler-rt/trunk/test/xray/TestCases/Linux/fdr-thread-order.cc
Modified: compiler-rt/trunk/test/xray/TestCases/Linux/fdr-thread-order.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/fdr-thread-order.cc?rev=308701&r1=308700&r2=308701&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/fdr-thread-order.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/fdr-thread-order.cc Thu Jul 20 17:30:04 2017
@@ -31,7 +31,7 @@ int main(int argc, char *argv[]) {
t2.join();
__xray_log_finalize();
__xray_log_flushLog();
- // CHECK: =={{[0-9]+}}==XRay: Log file in '{{.*}}'
+ // CHECK: {{.*}}XRay: Log file in '{{.*}}'
}
// We want to make sure that the order of the function log doesn't matter.
More information about the llvm-commits
mailing list