diff options
-rw-r--r-- | compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc b/compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc index 0f893872a4f..dcfbdf41332 100644 --- a/compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc +++ b/compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc @@ -70,12 +70,12 @@ int main() 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; } |