diff --git a/ci/actions-full-test.sh b/ci/actions-full-test.sh index 23bdd2198..2b6a24e98 100755 --- a/ci/actions-full-test.sh +++ b/ci/actions-full-test.sh @@ -34,7 +34,7 @@ main() { fi echo python3 t/run-fio-tests.py --skip "${skip[@]}" "${args[@]}" - python3 t/run-fio-tests.py --skip "${skip[@]}" "${args[@]}" + python3 t/run-fio-tests.py --skip "${skip[@]}" "${args[@]}" --run-only 1017 make -C doc html } diff --git a/t/run-fio-tests.py b/t/run-fio-tests.py index b372144f6..f07467358 100755 --- a/t/run-fio-tests.py +++ b/t/run-fio-tests.py @@ -1093,7 +1093,7 @@ def check_result(self): 'test_id': 1017, 'test_class': FioExeTest, 'exe': 't/verify.py', - 'parameters': ['-f', '{fio_path}'], + 'parameters': ['-f', '{fio_path}', '--debug'], 'success': SUCCESS_DEFAULT, 'requirements': [], }, diff --git a/t/verify.py b/t/verify.py index 771fe3321..91f4abfff 100755 --- a/t/verify.py +++ b/t/verify.py @@ -246,6 +246,7 @@ def verify_test(test_env, args, ddir, csum): directory = os.path.join(test_env['artifact_root'].replace(f'ddir_{ddir}','ddir_write'), f"{test['test_id']:04d}") test['fio_opts']['directory'] = str(Path(directory).absolute()) + logging.debug("directory: %s, full path: %s\n", directory, test['fio_opts']['directory']) else: if 'directory' in test['fio_opts']: del test['fio_opts']['directory']