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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
Index: test.py
diff --git a/test.py b/test.py
new file mode 100755
index 0000000000000000000000000000000000000000..e25a86bd93164190e38997681f5922d48ded5850
--- /dev/null
+++ b/test.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Convenience script for (cd [infra] && ENV/bin/expect_tests "$@")"""
+
+assert __name__ == '__main__'
+
+import os
+import sys
+
+path = os.path.join('ENV', 'bin', 'expect_tests')
+os.chdir(os.path.dirname(__file__))
+os.execv(path, [path] + sys.argv[1:])
« 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