Skip to content
Snippets Groups Projects
Commit 6d96bb62 authored by Zubin's avatar Zubin Committed by Marge Bot
Browse files

testsuite: normalise execvp vs exec differences in process tests

Fixes #25431
parent 747fd322
No related branches found
No related tags found
No related merge requests found
Pipeline #103036 canceled
# some platforms use spawnp instead of exec in some cases, resulting
# in spurious error output changes.
normalise_exec = normalise_fun(lambda s: s.replace('posix_spawnp', 'exec'))
normalise_exec = normalise_fun(lambda s: s.replace('posix_spawnp', 'exec').replace('execvp','exec'))
test('process001', [req_process], compile_and_run, [''])
test('process002', [fragile_for(16547, concurrent_ways), req_process], compile_and_run, [''])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment