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

Unified Diff: client/tests/run_isolated_test.py

Issue 2800643003: Switch run_isolated.py to use a constant path 'ir'. (Closed)
Patch Set: comments Created 3 years, 8 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 | « client/run_isolated.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/run_isolated_test.py
diff --git a/client/tests/run_isolated_test.py b/client/tests/run_isolated_test.py
index ef0bcf6fef7cdb04b9d41c5447abda899ebc0b00..6dc9ae855d2a1a9fb2a8eacf6ea5d7bdaa6f5550 100755
--- a/client/tests/run_isolated_test.py
+++ b/client/tests/run_isolated_test.py
@@ -173,6 +173,7 @@ class RunIsolatedTest(RunIsolatedTestBase):
'--cache', self.tempdir,
'--named-cache-root', os.path.join(self.tempdir, 'c'),
'--isolate-server', 'https://localhost',
+ '--root-dir', self.tempdir,
]
ret = run_isolated.main(cmd)
self.assertEqual(0, ret)
@@ -195,6 +196,7 @@ class RunIsolatedTest(RunIsolatedTestBase):
'--cache', self.tempdir,
'--isolate-server', 'https://localhost',
'--named-cache-root', os.path.join(self.tempdir, 'c'),
+ '--root-dir', self.tempdir,
'--',
'--extraargs',
'bar',
@@ -335,6 +337,7 @@ class RunIsolatedTest(RunIsolatedTestBase):
'--cache', self.tempdir,
'--isolate-server', 'https://localhost',
'--named-cache-root', os.path.join(self.tempdir, 'c'),
+ '--root-dir', self.tempdir,
]
ret = run_isolated.main(cmd)
self.assertEqual(1, ret)
@@ -785,6 +788,7 @@ class RunIsolatedJsonTest(RunIsolatedTestBase):
'--isolate-server', 'https://localhost:1',
'--named-cache-root', os.path.join(self.tempdir, 'c'),
'--json', out,
+ '--root-dir', self.tempdir,
]
ret = run_isolated.main(cmd)
self.assertEqual(0, ret)
« no previous file with comments | « client/run_isolated.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698