|
bool parseOpen(int proc, char *filename, int ret_code) |
In src/logging/spindle_logd.cc:265, parseOpen() compares filename against several patterns, including bin. During testing for another issue, mpich generated a temporary file named /dev/shm/mpich_shar_tmptUBbin, which matched the test for bin, causing a spurious failure.
Replace the bin string with /bin caused a more reliable failure:
28567 [Client.0.47@lookup_libc.c:110] get_libc - Looking for libc: is it /home/spindleuser/Spindle-build/testsuite/libtest18.so?
28568 Error: Didn't load target: bin on proc 11[Client.0.47@lookup_libc.c:110] get_libc - Looking for libc: is it /home/spindleuser/Spindle-build/testsuite/libtest19.so?
28569
28570 [Client.0.47@lookup_libc.c:110] get_libc - Looking for libc: is it /home/spindleuser/Spindle-build/testsuite/libtest20.so?
Spindle/src/logging/spindle_logd.cc
Line 265 in cbf1d78
In
src/logging/spindle_logd.cc:265,parseOpen()comparesfilenameagainst several patterns, includingbin. During testing for another issue, mpich generated a temporary file named/dev/shm/mpich_shar_tmptUBbin, which matched the test forbin, causing a spurious failure.Replace the
binstring with/bincaused a more reliable failure: