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

Unified Diff: tests/swarming_smoke_test.py

Issue 25093003: Client side implementation of new /content-gs isolate protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Created 7 years, 3 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
« no previous file with comments | « tests/isolateserver_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/swarming_smoke_test.py
diff --git a/tests/swarming_smoke_test.py b/tests/swarming_smoke_test.py
index 06149938febccc1e4a9ab4e8f37a21fdafbbf82e..15b1c89878025c200a35b34f0a89221a372a1e75 100755
--- a/tests/swarming_smoke_test.py
+++ b/tests/swarming_smoke_test.py
@@ -11,6 +11,9 @@ import unittest
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
+ISOLATE_SERVER = 'https://isolateserver.appspot.com/'
+SWARMING_SERVER = 'https://chromium-swarm.appspot.com/'
+
class TestSwarm(unittest.TestCase):
def test_example(self):
@@ -20,7 +23,11 @@ class TestSwarm(unittest.TestCase):
sys.executable,
os.path.normpath(
os.path.join(BASE_DIR, '..', 'example', 'run_example_swarm.py')),
+ '--isolate-server', ISOLATE_SERVER,
+ '--swarming', SWARMING_SERVER,
]
+ if '-v' in sys.argv:
+ cmd.append('--verbose')
p = subprocess.Popen(
cmd,
stdin=subprocess.PIPE,
« no previous file with comments | « tests/isolateserver_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698