mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
test-driver: Set context to include machines created by createMachine
This commit is contained in:
parent
d4ccfe3f6b
commit
48601269a9
@ -52,12 +52,12 @@ sub createMachine {
|
|||||||
my ($args) = @_;
|
my ($args) = @_;
|
||||||
my $vm = Machine->new({%{$args}, log => $log, redirectSerial => ($ENV{USE_SERIAL} // "0") ne "1"});
|
my $vm = Machine->new({%{$args}, log => $log, redirectSerial => ($ENV{USE_SERIAL} // "0") ne "1"});
|
||||||
$vms{$vm->name} = $vm;
|
$vms{$vm->name} = $vm;
|
||||||
|
$context .= "my \$" . $vm->name . " = \$vms{'" . $vm->name . "'}; ";
|
||||||
return $vm;
|
return $vm;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach my $vmScript (@ARGV) {
|
foreach my $vmScript (@ARGV) {
|
||||||
my $vm = createMachine({startCommand => $vmScript});
|
my $vm = createMachine({startCommand => $vmScript});
|
||||||
$context .= "my \$" . $vm->name . " = \$vms{'" . $vm->name . "'}; ";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user