| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
+ disable SIGCANCEL/SIGSETXID signal handlers
|
| | |
|
| |
|
|
|
|
|
|
| |
This avoids exec per test.
Also allows to pre-map shared memory regions.
And will allow to pre-map coverage regions, etc.
Seems to work already, but probably there are still some bugs.
|
| |
|
|
| |
Spinning is bad. Also pollutes strace output.
|
| |
|
|
|
| |
In this mode we execute pairs of syscalls concurrently
to provoke data races in kernel.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
First, it is just not necessary to open it multiple times.
But more importantly a program can close fds that it previosuly used:
r0 = open(...)
close(r0)
close(r0)
and this can close cover fds created in threaded mode.
|
| |
|
|
|
| |
This allows to use larger coverage buffer
and not overflow output at the same time.
|
| |
|