diff --git a/ci/run_tests/run_tests.py b/ci/run_tests/run_tests.py index efb2797675..44e34299d1 100644 --- a/ci/run_tests/run_tests.py +++ b/ci/run_tests/run_tests.py @@ -50,6 +50,7 @@ def main(): cwd="Tests/Packet++Test", ) if completed_process.returncode != 0: + print("Error while executing Packet++ tests: " + str(completed_process)) exit(completed_process.returncode) completed_process = subprocess.run( @@ -59,6 +60,7 @@ def main(): cwd="Tests/Pcap++Test", ) if completed_process.returncode != 0: + print("Error while executing Pcap++ tests: " + str(completed_process)) exit(completed_process.returncode) finally: diff --git a/ci/run_tests/run_tests_windows.py b/ci/run_tests/run_tests_windows.py index df9a3daab7..532241bfeb 100644 --- a/ci/run_tests/run_tests_windows.py +++ b/ci/run_tests/run_tests_windows.py @@ -121,6 +121,7 @@ def main(): shell=True, ) if completed_process.returncode != 0: + print("Error while executing Packet++ tests: " + str(completed_process)) exit(completed_process.returncode) skip_tests = ["TestRemoteCapture"] + args.skip_tests @@ -162,6 +163,7 @@ def main(): shell=True, ) if completed_process.returncode != 0: + print("Error while executing Pcap++ tests: " + str(completed_process)) exit(completed_process.returncode) finally: