Impala Public Jenkins has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/18332 )
Change subject: IMPALA-11193: Fix assertion failure of ClientCacheTest.MemLeak in CentOS ...................................................................... IMPALA-11193: Fix assertion failure of ClientCacheTest.MemLeak in CentOS The assertion failure happens in CentOS because the testcase reads the virtual memory usage of the current thread from /proc/thread-self. However, CentOS may not contain this symlink, therefore the testcase is not able to locate the path and then triggers the assertion. This fix changes the path to /proc/self, which is a symlink to the current process and available in CentOS. Because the testcase doesn't involve multithreading, it is okay to replace the /proc/thread-self by /proc/self to detect the memory usage. Tests: Passed core tests in CentOS. Change-Id: I045e91aa9b7d8e1b731e3261f0f18cc932c16f43 Reviewed-on: http://gerrit.cloudera.org:8080/18332 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- M be/src/runtime/client-cache-test.cc 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Impala Public Jenkins: Looks good to me, approved; Verified -- To view, visit http://gerrit.cloudera.org:8080/18332 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: merged Gerrit-Change-Id: I045e91aa9b7d8e1b731e3261f0f18cc932c16f43 Gerrit-Change-Number: 18332 Gerrit-PatchSet: 4 Gerrit-Owner: Yida Wu <[email protected]> Gerrit-Reviewer: Abhishek Rawat <[email protected]> Gerrit-Reviewer: Impala Public Jenkins <[email protected]>
