diff options
author | nileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 05:50:18 +0000 |
---|---|---|
committer | nileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 05:50:18 +0000 |
commit | e094256d424f78bbc42c4e6d0b3ea93813b426b4 (patch) | |
tree | 65876e56e8cf1218eb11173f350bcbefc80a9712 /build | |
parent | 19845b043af3e773fef859740a126632aba98c5f (diff) | |
download | chromium_src-e094256d424f78bbc42c4e6d0b3ea93813b426b4.zip chromium_src-e094256d424f78bbc42c4e6d0b3ea93813b426b4.tar.gz chromium_src-e094256d424f78bbc42c4e6d0b3ea93813b426b4.tar.bz2 |
Put commandline for apk tests in /data/local/tmp
We were trying to use the application directory which is not usually
writable (unless the device is rooted). This allows us to run the tests
on non-rooted devices.
BUG=125059
TEST=
Review URL: https://chromiumcodereview.appspot.com/10398049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/android/test_package_apk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/test_package_apk.py b/build/android/test_package_apk.py index 120fdf5..62b8edf 100644 --- a/build/android/test_package_apk.py +++ b/build/android/test_package_apk.py @@ -46,7 +46,7 @@ class TestPackageApk(TestPackage): command_line_file.write(self.test_suite_basename + ' ' + options) command_line_file.flush() self.adb.PushIfNeeded(command_line_file.name, - TestPackageApk.APK_DATA_DIR + + '/data/local/tmp/' + 'chrome-native-tests-command-line') def _GetGTestReturnCode(self): |