Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: visual_studio/NativeClientVSAddIn/check_test_results.py

Issue 11360111: [NaCl Addin] Fix building of libraries in MSVS (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/check_test_results.py
diff --git a/visual_studio/NativeClientVSAddIn/check_test_results.py b/visual_studio/NativeClientVSAddIn/check_test_results.py
index 4a84f9bdacedc7ad6b5cfd548f6c520a86c14414..83c571a6471190197b3c613c34059aaee5d4caca 100644
--- a/visual_studio/NativeClientVSAddIn/check_test_results.py
+++ b/visual_studio/NativeClientVSAddIn/check_test_results.py
@@ -29,10 +29,9 @@ def main():
results = results_node.findall('{%s}UnitTestResult' % MSTEST_NAMESPACE)
test_run_name = root.attrib['name']
- exit_code = 0
-
# Print the results, note any failures by setting exit_code to 1
for result in results:
+ exit_code = 0
fail_message = None
if 'outcome' not in result.attrib:
result.attrib['outcome'] = 'Error'

Powered by Google App Engine
This is Rietveld 408576698