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

Side by Side Diff: test.py

Issue 413983003: Refactor infra git libs and testing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Address comments Created 6 years, 4 months 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
(Empty)
1 #!/usr/bin/env python
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
4 # found in the LICENSE file.
5
6 """Convenience script for (cd [infra] && ENV/bin/expect_tests "$@")"""
7
8 assert __name__ == '__main__'
9
10 import os
11 import sys
12
13 path = os.path.join('ENV', 'bin', 'expect_tests')
14 os.chdir(os.path.dirname(__file__))
15 os.execv(path, [path] + sys.argv[1:])
OLDNEW
« infra/libs/git2/test/test_util.py ('K') | « infra/tools/bootstrap/get_appengine/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698