Home
last modified time | relevance | path

Searched refs:log_file (Results 1 – 10 of 10) sorted by relevance

/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dota_sniffer.py149 log_file = self._get_full_file_path()
150 with open(log_file, 'w') as file:
152 return log_file
287 log_file=self._get_remote_dump_path())
293 log_file=self._get_remote_dump_path())
365 def _process_tshark_dump(self, log_file): argument
378 utils.exe_cmd('cp {} {}'.format(log_file, temp_dump_file))
380 with open(temp_dump_file, 'r') as input_csv, open(log_file,
401 return log_file
439 log_file = self._get_full_file_path(tag)
[all …]
/tools/acloud/pull/
Dpull.py86 for log_file in log_files:
87 target_file = os.path.join(download_folder, os.path.basename(log_file))
88 ssh.ScpPullFile(log_file, target_file)
93 def DisplayLog(ssh, log_file, no_prompts=False): argument
105 ssh.Run("tail -f -n +1 %s" % log_file, show_output=True)
Dpull_test.py80 log_file = "file1.log"
81 pull.DisplayLog(_ssh, log_file)
82 expected_cmd = "tail -f -n +1 %s" % log_file
/tools/test/connectivity/acts/framework/acts/controllers/
Diperf_server.py540 log_file=self._get_remote_log_path())
564 log_file = self._get_full_file_path(self._current_tag)
565 with open(log_file, 'w') as f:
571 return log_file
687 log_file=self._get_device_log_path()))
719 log_file = self._get_full_file_path(self._current_tag)
720 with open(log_file, 'w') as f:
727 return log_file
/tools/test/connectivity/acts/framework/tests/controllers/
Diperf_server_test.py165 log_file = server.stop()
167 self.assertEqual(log_file, MOCK_LOGFILE_PATH,
238 log_file = server.stop()
240 self.assertEqual(log_file, MOCK_LOGFILE_PATH,
314 log_file = server.stop()
316 self.assertEqual(log_file, MOCK_LOGFILE_PATH,
/tools/test/connectivity/acts_tests/tests/google/power/bt/
DPowerBTcalibrationTest.py42 self.log_file = os.path.join(self.cal_data_path, 'Cal_data.csv')
43 os.makedirs(os.path.dirname(self.log_file), exist_ok=True)
73 with open(self.log_file, 'w', newline='') as f:
/tools/acloud/public/
Dacloud_main.py316 def _SetupLogging(log_file, verbose): argument
364 if log_file:
365 fhandler = logging.FileHandler(filename=log_file)
382 _SetupLogging(args.log_file, args.verbose)
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dlogserial.py333 with open(path, 'a') as log_file:
335 log_file.write('{}, {}\n'.format(info[0], info[1]))
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/performance/
DChannelSweepTest.py386 log_file = '%s/%s_%smhz.csv' % (log_path, test_name, channel_bandwidth)
388 (test_name, log_file))
389 with open(log_file, 'a') as csv_file:
/tools/asuite/atest/
Dresult_reporter.py596 for log_file in module_logs:
600 with open(log_file, 'r') as f: