Sha256: d29b989131c08feb9b5ba58c85eb476083dd6705c7476e547a22a24d2e3036e7
Contents?: true
Size: 854 Bytes
Versions: 64
Compression:
Stored size: 854 Bytes
Contents
#!/usr/bin/env ruby # encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt require_relative 'autohotkey.rb' autohotkey('CmdTlmServer', 'cmd_tlm_server.ahk') do require 'cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui' Cosmos::CmdTlmServerGui.run good_files = 0 Dir["autohotkey/outputs/logs/*.txt"].each do |file| if file =~ /server_messages/ if File.size(file) == 0 raise "CmdTlmServer message logs not written" else good_files += 1 end end end raise "No CmdTlmServer message logs found" unless good_files > 0 end
Version data entries
64 entries across 64 versions & 1 rubygems