VTEST can perform several pre-defined tasks. The configuration which task is performed on a certain package is defined via the $tasklist variable in the file vtestclient.pl. The following example defines the tasks for the packages basesystem, baselib and base++.
$tasklist->{'basesystem'} = [ $task_rmvroot, $task_extract,
$task_boot_compile, $task_boot_install,
$task_selftest
];
$tasklist->{'baselib'} = [ $task_extract, $task_build,
$task_selftest
];
$tasklist->{'base++'} = [ $task_extract, $task_build,
$task_selftest
];
The pre-defined tasks available in this configuration are:
2003-03-27