test(build_system): print failed command and output when test fails

This commit is contained in:
Ivan Grokhotkov 2024-08-20 11:52:18 +02:00
parent ead16f1dcb
commit 5e9ac5bdf7
No known key found for this signature in database
GPG Key ID: 1E050E141B280628

View File

@ -90,10 +90,17 @@ def run_idf_py(*args: str,
]
cmd += args # type: ignore
logging.debug('running {} in {}'.format(' '.join(cmd), workdir))
try:
return subprocess.run(
cmd, env=env, cwd=workdir,
check=check, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
text=True, encoding='utf-8', errors='backslashreplace', input=input_str)
except subprocess.CalledProcessError as e:
logging.error('The following idf.py command has failed: {}'.format(' '.join(cmd)))
logging.error('Working directory: {}'.format(workdir))
logging.error('Stdout: {}'.format(e.stdout))
logging.error('Stderr: {}'.format(e.stderr))
raise
def run_cmake(*cmake_args: str,
@ -120,10 +127,17 @@ def run_cmake(*cmake_args: str,
cmd = ['cmake'] + list(cmake_args)
logging.debug('running {} in {}'.format(' '.join(cmd), build_dir))
try:
return subprocess.run(
cmd, env=env, cwd=build_dir,
check=check, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
text=True, encoding='utf-8', errors='backslashreplace')
except subprocess.CalledProcessError as e:
logging.error('The following cmake command has failed: {}'.format(' '.join(cmd)))
logging.error('Working directory: {}'.format(workdir))
logging.error('Stdout: {}'.format(e.stdout))
logging.error('Stderr: {}'.format(e.stderr))
raise
def run_cmake_and_build(*cmake_args: str, env: typing.Optional[EnvDict] = None) -> None: