Artifact 141ac70432b4bc834b1eb2d8039713d156f2a09f:
- File loadwatch/launch-many.scm — part of check-in [0ee351862a] at 2015-06-19 21:17:03 on branch v1.60 — Missing changes (user: matt, size: 240) [annotate] [blame] [check-ins using] [more...]
(use posix) (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)))))