Mangle the name (/ -> :) in the run name. Separate base from
relative path so that the job names don't include a full path.
Signed-off-by: Sage Weil <sage@inktank.com>
##
stamp=`date +%Y-%m-%d_%H:%M:%S`
-name=`whoami`"-$stamp-$suite-$ceph-$kernel-$flavor-$mtype"
+nicesuite=`echo $suite | sed 's/\//:/g'`
+name=`whoami`"-$stamp-$nicesuite-$ceph-$kernel-$flavor-$mtype"
echo "name $name"
./virtualenv/bin/teuthology-suite -v $fn \
- --collections ~/src/ceph-qa-suite/suites/$suite/* \
+ --base ~/src/ceph-qa-suite/suites \
+ --collections $suite \
--email $email \
--timeout 36000 \
--name $name \