kerneltest/e32test/usb/t_usb_win/usbtestloop.pl
author Mike Kinghan <mikek@symbian.org>
Thu, 25 Nov 2010 14:35:45 +0000
branchGCC_SURGE
changeset 305 1ba12ef4ef89
parent 0 a41df078684a
child 271 dc268b18d709
permissions -rw-r--r--
Enhance the base/rom extension to generate the symbol file of the rom built. The symbol file is placed in epoc32/rom/<baseport_name>, along with the rom log and final oby file.

#
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
# 
# Description:
#
#

use strict;

chdir "scripts" or die "$!";

print "======================================\n";
print "USBTESTLOOP starts\n";
print localtime()."\n";
print "======================================\n";

unless (-e "h4testsusbcv.bat")
	{
	print "Cannot find h4testsusbcv.bat\n";
	exit 0;
	}
unless (-e "h4tests.bat")
	{
	print "Cannot find h4tests.bat\n";
	exit 0;
	}

while (1)
	{
	my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
# Sod USBCV for the time being
#	if ($wday == 5) # It's Friday !
#		{
#		print localtime().": Start h4testsusbcv.bat\n";
#		system "h4testsusbcv.bat";
#		print localtime().": Execution of h4testsusbcv.bat complete\n";
#		}
#	else
#		{
		print localtime().": Start h4tests.bat\n";
		system "h4tests.bat";
		print localtime().": Execution of h4tests.bat complete\n";
#		}
	($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
	my $prefix = sprintf("%04d%02d%02d%02d%02d%02d", $year+1900, $mon+1, $mday, $hour, $min, $sec);
	system "COPY /Y ..\\Results\\h4tests.log ..\\${prefix}_h4tests.log";
	system "COPY /Y ..\\Results\\h4performance.log ..\\${prefix}_h4performance.log";
	}