This is an automated email from the ASF dual-hosted git repository.
achennaka pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 6fd9410d2 [test] add binary path for SLES15 SP14
6fd9410d2 is described below
commit 6fd9410d238f34af361e776103bb505208b6e008
Author: Alexey Serbin <[email protected]>
AuthorDate: Fri Apr 5 12:21:21 2024 -0700
[test] add binary path for SLES15 SP14
On SLES15 SP4, 'kdestroy' binary is under /usr/lib/mit/bin. Prior to
this patch, several scenarios from 'mini_kdc-test', 'security-itest',
and 'external_mini_cluster-test' would fail to find the binary.
Change-Id: Ib616a19b2b079755c94b72859cfab353a8615080
Reviewed-on: http://gerrit.cloudera.org:8080/21248
Tested-by: Alexey Serbin <[email protected]>
Reviewed-by: Abhishek Chennaka <[email protected]>
---
src/kudu/security/test/mini_kdc.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/kudu/security/test/mini_kdc.cc
b/src/kudu/security/test/mini_kdc.cc
index 8b07a992e..c9b520b9f 100644
--- a/src/kudu/security/test/mini_kdc.cc
+++ b/src/kudu/security/test/mini_kdc.cc
@@ -110,6 +110,7 @@ Status GetBinaryPath(const string& binary, string* path) {
"/opt/local/sbin", // Macports
"/opt/local/bin", // Macports
"/usr/lib/mit/sbin", // SLES
+ "/usr/lib/mit/bin", // SLES
"/usr/sbin", // Linux
};
return FindExecutable(binary, kCommonLocations, path);