Megatest

Artifact [72e97c4511]
Login

Artifact 72e97c451114dab666252e27843c1a9fedb56414:


(let loop ((count 0))
  (if (> count 500000)
      (print "DONE")
      (let ((cmd (conc "./queuefeeder xena:22022 bsub ./testopenlava.sh " count " " (random 30))))
	(print "Running: " cmd)
	(system cmd)
	(loop (+ count 1)))))