Merge change 22208 into eclair

* changes:
  Fixed the missing EOL in last line of crashed tests list file. Also fixed some whitespaces.
This commit is contained in:
Android (Google) Code Review
2009-08-20 18:22:07 -07:00

View File

@@ -233,7 +233,8 @@ def main(options, args):
# Create the crash list. # Create the crash list.
fp = open(results_dir + "/layout_tests_crashed.txt", "w"); fp = open(results_dir + "/layout_tests_crashed.txt", "w");
fp.writelines('\n'.join(crashed_tests)) for crashed_test in crashed_tests:
fp.writelines(crashed_test + '\n')
fp.close() fp.close()
# Count the number of tests in each category. # Count the number of tests in each category.