Closed
Bug 1385047
Opened 8 years ago
Closed 6 years ago
NSPR fdcach test fails with "fd stack malfunctioned"
Categories
(NSPR :: NSPR, enhancement)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1579448
People
(Reporter: KaiE, Unassigned)
References
Details
The NSPR test named "fdcach" fails with error message
fd stack malfunctioned
It happens on the last line from below's code snippet:
/*
* Create some fd's. These fd's should come from
* the fd stack.
*/
for (i = 0; i < numfds; i++) {
fds[i] = PR_NewTCPSocket();
if (NULL == fds[i]) {
fprintf(stderr, "PR_NewTCPSocket failed\n");
exit(1);
}
#ifdef ORDER_PRESERVED
if (fds[i] != savefds[numfds-1-i]) {
fprintf(stderr, "fd stack malfunctioned\n");
| Reporter | ||
Comment 1•6 years ago
|
||
Bug 1579448 has analysis what happens, we should remove the corresponding test code.
Status: NEW → RESOLVED
Closed: 6 years ago
QA Contact: jjones
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•