From 30ba73fade81a77e6bf2feee96124f5234a37db8 Mon Sep 17 00:00:00 2001 From: Yonggoo Kang Date: Tue, 23 Jul 2024 15:17:02 +0900 Subject: [PATCH] Replace to absolute path for chsmack Change-Id: Idf47621eccd84dc4922599509a8fc5e87dd2052d --- tests/manual/man_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/man_tests.cpp b/tests/manual/man_tests.cpp index d7ac1e9..6a1ba3b 100644 --- a/tests/manual/man_tests.cpp +++ b/tests/manual/man_tests.cpp @@ -112,7 +112,7 @@ struct TestContents { void DisplayQR(struct TestContents &contents) { int ret; - std::string command = "chsmack -a '_' "; + std::string command = "/usr/bin/chsmack -a '_' "; command += contents.path.c_str(); ret = system(command.c_str()); -- 2.34.1