This is an initial setup in order to move some additional tests from Linux onto Posix.
Details
- Reviewers
rengolin t.p.northover samsonov eugenis - Commits
- rGcf36b5fd3277: [sanitizer_common tests] Make Darwin a Posix system and bring the stable…
rCRT263142: [sanitizer_common tests] Make Darwin a Posix system and bring the stable…
rL263142: [sanitizer_common tests] Make Darwin a Posix system and bring the stable…
Diff Detail
Event Timeline
I will probably add freebsd to the unsupported line in
decorate_proc_maps.cc since procfs isn't mounted by default. Or we can
just move that test to /Linux…
Thank you,
Filipe
test/sanitizer_common/lit.common.cfg | ||
---|---|---|
13 | I mean, can you factor out this definition outside of "config.tool_name" conditions? It won't do harm for tsan/msan, as we don't build them for arm and armhf anyway, and I'm not sure we have a decent support for LSan as well. |
Fair enough. I'll just factor out the definition and put the ARM
variants in the !stable-runtime camp.
Will upload in a bit.
Thank you,
Filipe
LGTM with a nit. Thanks!
test/sanitizer_common/lit.common.cfg | ||
---|---|---|
26 | if config.target_arch not in ['arm', 'armhf', 'aarch64']: config.available_features.add('stable-runtime') ? |
Right, let's move this to Linux/ directory instead.