Mercurial > hg > Database > Christie
view scripts/debug.rb @ 267:1ac366f96815
remake for CommandPattern
author | ichikitakahiro <e165713@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 29 Jan 2020 18:50:14 +0900 |
parents | 0c76ab6b586a |
children |
line wrap: on
line source
#!/usr/bin/ruby #./debug.rb ../build/libs/Christie.jar christie.test.Remote.StartRemoteTest 100 jar_path = ARGV[0] class_path = ARGV[1] loop_num = ARGV[2].to_i loop_num.times do |i| system("java -cp #{jar_path} #{class_path} 2>./error_log &") sleep(1) system("killall java") sleep(1) end