Routing mt.exe output to NUL to hopefully fix expected error build failures...

master
Mark Palange (Mani) 2009-10-01 14:51:35 -07:00
parent 45c053b87d
commit 0d0840de0e
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ def test_assembly_binding(src_filename, assembly_name, assembly_ver):
resource_id = ""
if os.path.splitext(src_filename)[1].lower() == ".dll":
resource_id = ";#2"
system_call = '%s -nologo -inputresource:%s%s -out:%s' % (mt_path, src_filename, resource_id, tmp_file_name)
system_call = '%s -nologo -inputresource:%s%s -out:%s > NUL' % (mt_path, src_filename, resource_id, tmp_file_name)
print "Executing: %s" % system_call
mt_result = os.system(system_call)
if mt_result == 31: