author | Daniel Jacobs <daniel.jacobs@nokia.com> |
Mon, 17 May 2010 11:37:12 +0100 | |
branch | fix |
changeset 557 | be0305eb3dc3 |
parent 551 | b41ce675e7b2 |
permissions | -rw-r--r-- |
30
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
1 |
# |
547
9fe7d0ab0f8f
fixes for review comments. better docs. copyrights. make copy filter more modular, change <copy> tag to <filtercopy>
timothy.murphy@nokia.com
parents:
538
diff
changeset
|
2 |
# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
30
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 = "0103b" |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
26 |
t.name = "timing_on" |
549
d633be326c9f
fix: depcrunch was using re.match where re.findall was what was wanted. Add a test.
timothy.murphy@nokia.com
parents:
547
diff
changeset
|
27 |
t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf" + \ |
551
b41ce675e7b2
fix: pull less modules into depcrunch. fix timing test. Don't report RPP unnecessarily in resource FLM.
timothy.murphy@nokia.com
parents:
549
diff
changeset
|
28 |
" --filters=FilterLogfile,FilterTiming -f ${SBSLOGFILE} && " + \ |
30
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
29 |
"grep progress:duration ${SBSLOGFILE}.timings" |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
30 |
t.mustmatch = [ |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
31 |
"^<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
|
32 |
"^<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
|
33 |
"^<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
|
34 |
] |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
35 |
t.mustnotmatch = [] |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
36 |
t.run() |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
37 |
|
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
38 |
|
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
39 |
t.id = "103" |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
40 |
t.name = "timing" |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
41 |
t.print_result() |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
42 |
|
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
43 |
return t |
01c962c3f631
correction: left out timing files in previous commit
timothy.murphy@nokia.com
parents:
diff
changeset
|
44 |