sbsv2/raptor/test/smoke_suite/implib_armv5_what.py
changeset 18 de5b887c98f7
parent 13 c327db0664bb
equal deleted inserted replaced
14:eb060913c963 18:de5b887c98f7
    20 	t = CheckWhatSmokeTest()
    20 	t = CheckWhatSmokeTest()
    21 	t.id = "15"
    21 	t.id = "15"
    22 	t.name = "implib_armv5_what"
    22 	t.name = "implib_armv5_what"
    23 	t.command = "sbs -b smoke_suite/test_resources/simple_implib/bld.inf -c " + \
    23 	t.command = "sbs -b smoke_suite/test_resources/simple_implib/bld.inf -c " + \
    24 			"armv5 --what LIBRARY"
    24 			"armv5 --what LIBRARY"
    25 	# ABIv1 .lib files are not generated on Linux
       
    26 	t.stdout = [
    25 	t.stdout = [
    27 		'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib.dso',
    26 		'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib.dso',
    28 		'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib{000a0000}.dso'
    27 		'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib{000a0000}.dso'
    29 	]
    28 	]
    30 	t.run("linux")
    29 	t.run()
    31 	# Run test on Windows if that is the current OS
       
    32 	if t.result == CheckWhatSmokeTest.SKIP:
       
    33 		t.stdout.extend([
       
    34 			'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib.lib',
       
    35 			'$(EPOCROOT)/epoc32/release/armv5/lib/simple_implib{000a0000}.lib'
       
    36 		])
       
    37 		t.run("windows")
       
    38 	
    30 	
       
    31 	t.print_result()
    39 	return t
    32 	return t