sbsv2/raptor/test/smoke_suite/toolchain_macros.py
branchfix
changeset 170 d1af983e283d
parent 25 2b76b04e296d
child 171 083d88a8550e
--- a/sbsv2/raptor/test/smoke_suite/toolchain_macros.py	Mon Jan 25 11:43:34 2010 +0000
+++ b/sbsv2/raptor/test/smoke_suite/toolchain_macros.py	Mon Jan 25 17:17:52 2010 +0000
@@ -37,14 +37,14 @@
 	
 	count = 0	
 	for toolchain in sorted(toolchains.keys()):
-		t.id = "0103" + string.ascii_lowercase[count]
+		t.id = "0095" + string.ascii_lowercase[count]
 		t.name = rootname % (toolchain, "clean")
 		t.command = rootcommand + toolchain + " clean"
 		t.mustmatch_singleline = []
 		t.run()
 		count += 1
 		
-		t.id = "0103" + string.ascii_lowercase[count]
+		t.id = "0095" + string.ascii_lowercase[count]
 		t.name = rootname % (toolchain, "build")
 		t.command = rootcommand + toolchain
 		mustmatch = []	
@@ -54,7 +54,7 @@
 		t.run()
 		count += 1
 
-	t.id = "103"
+	t.id = "95"
 	t.name = "toolchain_macros"
 	t.print_result()
 	return t