Megatest

run-parallel.sh at [39164c1a21]
Login

File ulex/run-parallel.sh artifact e2d9733578 part of check-in 39164c1a21


#!/bin/bash

CMD=$1

make example 

for x in $(seq 1 10);do
  ./example $CMD 2>&1| tee run$x.log &
done

wait