remove independent verification from this step b=363237 r=preed

This commit is contained in:
rhelmer%mozilla.com 2006-12-09 02:18:52 +00:00
Родитель 2df3d572f1
Коммит 9b37ee58cf
1 изменённых файлов: 0 добавлений и 25 удалений

Просмотреть файл

@ -103,31 +103,6 @@ sub Verify {
my $testDir = $updateDir . '/patcher/temp/' . $product . '/' . $oldVersion . '-' . $version . '/aus2.test';
File::Find::find(\&TestAusCallback, $testDir);
# Create verification area.
my $verifyDirVersion = $verifyDir . '/' . $version;
MkdirWithPath('dir' => $verifyDirVersion)
or die("Could not mkdir $verifyDirVersion: $!");
$this->Shell(
'cmd' => 'cvs -d ' . $mozillaCvsroot . ' co -d updates mozilla/testing/release/updates/',
'logFile' => $logDir . '/verify-updates_checkout.log',
'dir' => $verifyDirVersion,
);
$this->Shell(
'cmd' => 'cvs -d ' . $mozillaCvsroot . ' co -d common mozilla/testing/release/common/',
'logFile' => $logDir . '/verify-updates_checkout.log',
'dir' => $verifyDirVersion,
);
# Customize updates.cfg to contain the channels you are interested in
# testing.
$this->Shell(
'cmd' => './verify.sh -t',
'logFile' => $logDir . '/verify_updates.log',
'dir' => $verifyDirVersion . '/updates',
'timeout' => 3600,
);
}
sub TestAusCallback {