sbsv2/raptor/test/smoke_suite/implib_winscw_what.py
author lorewang
Wed, 01 Dec 2010 16:05:36 +0800
changeset 715 e0739b8406dd
parent 591 22486c9c7b15
permissions -rw-r--r--
Specify extenal tool with path
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
591
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     1
#
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     2
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     3
# All rights reserved.
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     4
# This component and the accompanying materials are made available
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     5
# under the terms of the License "Eclipse Public License v1.0"
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     6
# which accompanies this distribution, and is available
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     8
#
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
     9
# Initial Contributors:
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    10
# Nokia Corporation - initial contribution.
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    11
#
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    12
# Contributors:
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    13
#
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    14
# Description: 
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    15
#
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    16
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    17
from raptor_tests import CheckWhatSmokeTest
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    18
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    19
def run():
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    20
	t = CheckWhatSmokeTest()
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    21
	t.id = "37"
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    22
	t.name = "implib_winscw_what"
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    23
	t.command = "sbs -b smoke_suite/test_resources/simple_implib/bld.inf -c " \
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    24
			+ "winscw --what LIBRARY"
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    25
	t.stdout = [
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    26
		'$(EPOCROOT)/epoc32/release/winscw/udeb/simple_implib.lib'
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    27
	]
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    28
	t.run()
22486c9c7b15 raptor v2.14.0
jjkang
parents:
diff changeset
    29
	return t