Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion compiler-rt/test/rtsan/fork_exec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ int main() MAYBE_NONBLOCKING {
}

// CHECK-NOHALT: Intercepted call to {{.*}} `fork` {{.*}}
// CHECK-NOHALT: Intercepted call to {{.*}} `execve` {{.*}}

// We should also get some other intercepted call. On some systems this
// is `execve`, on others, it's a lock to set up `execve`. In either
// case, just check that we get a second intercepted call, don't sweat
// the name.
// CHECK-NOHALT: Intercepted call to {{.*}}

// usleep checks that rtsan is still enabled in the parent process
// See note in our interceptors file for why we don't look for `wait`
Expand Down
Loading