If OSSTEST_TASK is not set, we construct a <refkey> from the username
and the nodename, and look for a such a static task. If OSSTEST_TASK
/is/ set would require it to contain `<taskid> <type> <refkey>'.
In this patch, permit OSSTEST_TASK to be set simply to the <refkey>.
This is much more convenient and doesn't involve manually looking up
taskids. The risk of error seems negligible.
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
if (!defined $spec) {
$!=0; $?=0; my $node= `uname -n`; defined $node or die "$? $!";
chomp($node); $node =~ s/\..*//;
- my $refkey= "$c{Username}\@$node";
- $what= "static $refkey";
+ $spec= "$c{Username}\@$node";
+ }
+ if ($spec !~ m/\s/) {
+ $what= "static $spec";
$q= $dbh_tests->prepare(<<END);
SELECT * FROM tasks
WHERE type='static' AND refkey=?
END
- $q->execute($refkey);
+ $q->execute($spec);
} else {
my @l = split /\s+/, $spec;
@l==3 or die "$spec ".scalar(@l)." ?";