sbsv2/raptor/test/smoke_suite/exe_winscw.py
branchfix
changeset 40 afaf81347e0a
parent 3 e1eecf4d390d
child 41 8271ebf1309f
equal deleted inserted replaced
39:164b0547f8a5 40:afaf81347e0a
    18 
    18 
    19 def run():
    19 def run():
    20 	t = SmokeTest()
    20 	t = SmokeTest()
    21 	t.id = "33"
    21 	t.id = "33"
    22 	t.name = "exe_winscw"
    22 	t.name = "exe_winscw"
    23 	t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf -c winscw"
    23 	t.usebash = True
       
    24 	t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf -c winscw; grep -E \"mwldsym2\" ${SBSLOGFILE}"
    24 	t.targets = [
    25 	t.targets = [
    25 		"$(EPOCROOT)/epoc32/release/winscw/udeb/test.exe",
    26 		"$(EPOCROOT)/epoc32/release/winscw/udeb/test.exe",
    26 		"$(EPOCROOT)/epoc32/release/winscw/urel/test.exe",
    27 		"$(EPOCROOT)/epoc32/release/winscw/urel/test.exe",
    27 		"$(EPOCROOT)/epoc32/release/winscw/urel/test.exe.map"
    28 		"$(EPOCROOT)/epoc32/release/winscw/urel/test.exe.map"
    28 		]
    29 		]
    34 		"test_/winscw/urel/test.o",
    35 		"test_/winscw/urel/test.o",
    35 		"test_/winscw/urel/test_.o",
    36 		"test_/winscw/urel/test_.o",
    36 		"test_/winscw/urel/test_UID_.o",
    37 		"test_/winscw/urel/test_UID_.o",
    37 		"test_/winscw/urel/test.UID.CPP"
    38 		"test_/winscw/urel/test.UID.CPP"
    38 	])
    39 	])
       
    40 	# Check that the default operator new library is used
       
    41 	t.mustmatch = [
       
    42 		'.*mwldsym2.*scppnwdl.lib.*test.exe.*'
       
    43 		]
    39 	t.run()
    44 	t.run()
    40 	return t
    45 	return t