diff options
author | Kevin Rocard <kevinx.rocard@intel.com> | 2014-10-24 15:32:26 +0200 |
---|---|---|
committer | Kevin Rocard <kevinx.rocard@intel.com> | 2014-10-24 15:49:39 +0200 |
commit | 187e350b2f46a53819fe76a1eeda72036be2d512 (patch) | |
tree | 264b337b1f2165023055bfa56e0e57c4942bb33c /tools | |
parent | f811b7b53c0c2f0d4320c70230e609619c5087c1 (diff) | |
download | external_parameter-framework-187e350b2f46a53819fe76a1eeda72036be2d512.zip external_parameter-framework-187e350b2f46a53819fe76a1eeda72036be2d512.tar.gz external_parameter-framework-187e350b2f46a53819fe76a1eeda72036be2d512.tar.bz2 |
Remove flood debug trace on xml generation error
The patch 0b3ff88 "Add log in case of failure"
added system process and network log on failure.
It was planed to be used to debug a tricky socket
error bug.
The bug was since fixed and the traces now only
flood build log, making xml generation
error root cause spotting a lot harder.
Remove extra debug message (netstat and ps invocation)
on error.
Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/xmlGenerator/hostDomainGenerator.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/xmlGenerator/hostDomainGenerator.sh b/tools/xmlGenerator/hostDomainGenerator.sh index 4cfce4d..0fa3510 100755 --- a/tools/xmlGenerator/hostDomainGenerator.sh +++ b/tools/xmlGenerator/hostDomainGenerator.sh @@ -99,15 +99,6 @@ clean_up () { status=$? set +e # An error should not abort clean up - ( if test $status -ne 0 - then - echo "$0 is exiting on error, printing debug information." - echo "Test platform port: $TPSocket" - echo "PFW port: $PFWSocket" - netstat --program --all --numeric --extend --tcp - ps -ejHlf - fi ) >&5 - # Exit the test-platform only if it was created by this process if $TPCreated then |