sbsv2/raptor/test/smoke_suite/timing.py
author timothy.murphy@nokia.com
Thu, 25 Mar 2010 13:43:28 +0000
branchfix
changeset 408 a819f9223567
parent 30 01c962c3f631
child 538 71918f4840ed
permissions -rw-r--r--
fix: stop using "magic" numbers in string operations for the copyannofile2log feature fix: When using the copylogfromannofile workaround, extract the build ID and build duration and add to the log as these are useful for analysis. The log should now be identical to the stdout file. fix: Remove extra blank lines from output in copylogfromannofile mode.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     1
#
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     2
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     3
# All rights reserved.
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     4
# This component and the accompanying materials are made available
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     5
# under the terms of the License "Eclipse Public License v1.0"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     6
# which accompanies this distribution, and is available
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     8
#
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
     9
# Initial Contributors:
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    10
# Nokia Corporation - initial contribution.
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    11
#
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    12
# Contributors:
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    13
#
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    14
# Description: 
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    15
#
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    16
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    17
from raptor_tests import SmokeTest
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    18
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    19
def run():
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    20
	t = SmokeTest()
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    21
	t.usebash = True
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    22
	
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    23
	t.description = "Test that a timing log is created and contains total parse and build durations"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    24
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    25
	t.id = "0103a"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    26
	t.name = "timing_off"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    27
	t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf -f-"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    28
	t.mustnotmatch = [
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    29
			".*progress:discovery.*",
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    30
			".*progress:start.*",
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    31
			".*progress:end.*"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    32
			]
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    33
	t.run()
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    34
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    35
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    36
	t.id = "0103b"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    37
	t.name = "timing_on"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    38
	t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf --timing " + \
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    39
			"--filters=FilterLogfile,FilterTiming -f ${SBSLOGFILE} && " + \
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    40
			"grep progress:duration ${SBSLOGFILE}.timings"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    41
	t.mustmatch = [
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    42
			"^<progress:duration object_type='layer' task='parse' key='.*' duration='\d+.\d+' />$",
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    43
			"^<progress:duration object_type='layer' task='build' key='.*' duration='\d+.\d+' />$",
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    44
			"^<progress:duration object_type='all' task='all' key='all' duration='\d+.\d+' />$"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    45
			]
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    46
	t.mustnotmatch = []
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    47
	t.run()
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    48
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    49
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    50
	t.id = "103"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    51
	t.name = "timing"
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    52
	t.print_result()
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    53
	
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    54
	return t
01c962c3f631 correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff changeset
    55