Fix LOGDIR for fuel_logs tool

Closes-Bug: #1479550

Change-Id: I716434d3c82e015b7749281aa35b39e5dd5f4846
This commit is contained in:
ss-yuriy 2015-07-28 13:07:00 +03:00 committed by Aleksandra Fedorova
parent b782bb0b9d
commit d56358668e
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ RunTest() {
# Extract logs using fuel_logs utility
if [ "${FUELLOGS_TOOL}" != "no" ]; then
for logfile in $(find "${WORKSPACE}/logs/" -name "fail*.tar.xz" -type f);
for logfile in $(find "${LOGS_DIR}" -name "fail*.tar.xz" -type f);
do
./utils/jenkins/fuel_logs.py "${logfile}" > "${logfile}.filtered.log"
done