From: Sanghoon Lee Date: Fri, 30 Mar 2018 05:05:19 +0000 (+0900) Subject: [Tools][Non-ACR][Updated tctshell] X-Git-Tag: public_m1_final~95 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d251c61c7cd3192eb1d9acaff75201f3806654c;p=test%2Ftct%2Fcsharp%2Fapi.git [Tools][Non-ACR][Updated tctshell] Change-Id: I93a8b522e90a0c716f51023e3d68b8d35b0ba860 --- diff --git a/release/csharp-tct_5.0_dotnet/tct-tools_r4_rc1/shell/tctshell/distribute_plan.py b/release/csharp-tct_5.0_dotnet/tct-tools_r4_rc1/shell/tctshell/distribute_plan.py index 9b93cc0..7a348c2 100755 --- a/release/csharp-tct_5.0_dotnet/tct-tools_r4_rc1/shell/tctshell/distribute_plan.py +++ b/release/csharp-tct_5.0_dotnet/tct-tools_r4_rc1/shell/tctshell/distribute_plan.py @@ -359,11 +359,13 @@ class AutoPlanDevExecutor(Process): self.manualworker = AutoPlan_ManualSuiteWorker(suite, \ self.deviceId, self.plan) self.manualworker.auto_test() - - dump_files = SdbManager.exportDumpFiles(self.deviceId, \ + try: + dump_files = SdbManager.exportDumpFiles(self.deviceId, \ self.plan.getResultFolderPath() + "/dump/" + suite.getSuiteName()) - if dump_files: - SdbManager.deleteDumpFiles(self.deviceId, dump_files) + if dump_files: + SdbManager.deleteDumpFiles(self.deviceId, dump_files) + except Exception as ex: + LOGGER.error(str(ex)) LOGGER.debug("finished AutoPlanDevExecutor")