Chromium Code Reviews| Index: build/android/pylib/junit/test_runner.py |
| diff --git a/build/android/pylib/junit/test_runner.py b/build/android/pylib/junit/test_runner.py |
| index dea8cdc675ca6e5be1668416a0ba72e29480afde..6238fe13927d3187a0718d85fb041e298c0bf658 100644 |
| --- a/build/android/pylib/junit/test_runner.py |
| +++ b/build/android/pylib/junit/test_runner.py |
| @@ -27,7 +27,7 @@ class JavaTestRunner(object): |
| """Runs junit tests from |self._test_suite|.""" |
| with tempfile.NamedTemporaryFile() as json_file: |
| java_script = os.path.join( |
| - constants.GetOutDirectory(), 'bin', self._test_suite) |
| + constants.GetOutDirectory(), 'bin', 'helper', self._test_suite) |
|
jbudorick
2016/02/09 00:06:47
nit: not sure I'm crazy about "bin/helper/..."
mikecase (-- gone --)
2016/02/09 00:54:34
Well, cant really think up anything better. Could
jbudorick
2016/02/09 01:22:21
I can't either. I guess I like "helper" best among
mikecase (-- gone --)
2016/02/09 22:18:34
keeping as helper
|
| command = [java_script, |
| '-test-jars', self._test_suite + '.jar', |
| '-json-results-file', json_file.name] |