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

Side by Side Diff: components/test/data/password_manager/automated_tests/run_tests.py

Issue 743013004: Move password manager automated tests to its own subdirectory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 # -*- coding: utf-8 -*- 1 # -*- coding: utf-8 -*-
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """This file allows the bots to be easily configure and run the tests.""" 6 """This file allows the bots to be easily configure and run the tests."""
7 7
8 import argparse 8 import argparse
9 import os 9 import os
10 import tempfile 10 import tempfile
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "</test><test name='%s' type='normal' successful='false'></test>" 91 "</test><test name='%s' type='normal' successful='false'></test>"
92 "</result>" % (websitetest.name, websitetest.name)) 92 "</result>" % (websitetest.name, websitetest.name))
93 finally: 93 finally:
94 try: 94 try:
95 os.remove(results_path) 95 os.remove(results_path)
96 except Exception: 96 except Exception:
97 pass 97 pass
98 98
99 xml.write("</xml>") 99 xml.write("</xml>")
100 xml.close() 100 xml.close()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698