当poll()返回错误时,我正在尝试在代码中测试场景。但是我不知道如何强制poll()返回错误。我试图使poll()无限期阻塞,并尝试向其发送SIGINT,但这只是停止了该过程。
有没有办法让poll()返回错误?
谢谢。
最佳答案
有没有办法让poll()返回错误?
也许有一些错误,但是存在许多潜在的错误。下面是一种通用的方法,不是poll()
特定的。
有时,测试代码需要注入带有备用代码的假错误。
这种通用方法的正确性是高度依赖的代码和测试目标。
int poll_result = poll(&fds, nfds, timeout);
#if TEST1
if (poll_result != -1) {
// Avoid using rand()
static unsigned seed = 0;
seed = (16807 * seed) mod 2147483647; // https://stackoverflow.com/a/9492699/2410359
if (seed % 97 == 0) { // about 1% of the time
// adjust as desired, e.g. EINVAL may not make sense here.
int faults[] = { EFAULT, EINTR, EINVAL, ENOMEM };
const unsigned n = sizeof faults / sizeof faults[0];
errno = faults[seed % n];
poll_result = -1;
}
}
#endif
...
poll()
ref参见有关EAGAIN, EINTR
的注释部分。当然,使用备用代码可能会隐藏仅在真实代码下才会出现的问题。
关于c - 如何强制poll()错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44831836/