[PATCH] D49501: Remove scheduling dependency from XRay :: Posix/fork_basic_logging.cc
Matthew Voss via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 18 17:30:08 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT337432: Remove scheduling dependency from XRay :: Posix/fork_basic_logging.cc (authored by ormris, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D49501?vs=156122&id=156190#toc
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D49501
Files:
test/xray/TestCases/Posix/fork_basic_logging.cc
Index: test/xray/TestCases/Posix/fork_basic_logging.cc
===================================================================
--- test/xray/TestCases/Posix/fork_basic_logging.cc
+++ test/xray/TestCases/Posix/fork_basic_logging.cc
@@ -70,12 +70,12 @@
if(fork())
{
print_parent_or_child();
- // CHECK: Parent with tid
+ // CHECK-DAG: Parent with tid
}
else
{
print_parent_or_child();
- // CHECK: Child with tid
+ // CHECK-DAG: Child with tid
}
return 0;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49501.156190.patch
Type: text/x-patch
Size: 484 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180719/bc9d91eb/attachment.bin>
More information about the llvm-commits
mailing list