Changeset 122261 in webkit


Ignore:
Timestamp:
Jul 10, 2012 2:13:28 PM (12 years ago)
Author:
wangxianzhu@chromium.org
Message:

[Chromium-Android] Fix typos in chromium_android.py in r151492
https://bugs.webkit.org/show_bug.cgi?id=90904

Reviewed by Ojan Vafai.

  • Scripts/webkitpy/layout_tests/port/chromium_android.py:

(ChromiumAndroidPort.setup_test_run):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r122258 r122261  
    4646        * DumpRenderTree/win/DumpRenderTree.cpp:
    4747        (resetDefaultsToConsistentValues):
     48
     492012-07-10  Xianzhu Wang  <wangxianzhu@chromium.org>
     50
     51        [Chromium-Android] Fix typos in chromium_android.py in r151492
     52        https://bugs.webkit.org/show_bug.cgi?id=90904
     53
     54        Reviewed by Ojan Vafai.
     55
     56        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
     57        (ChromiumAndroidPort.setup_test_run):
    4858
    49592012-07-10  Xianzhu Wang  <wangxianzhu@chromium.org>
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py

    r122251 r122261  
    6060DRT_APP_DIR = '/data/user/0/' + DRT_APP_PACKAGE + '/'
    6161DRT_APP_FILES_DIR = DRT_APP_DIR + 'files/'
    62 DRT_APP_CACHE_DIR = DIR_APP_DIR + 'cache/'
     62DRT_APP_CACHE_DIR = DRT_APP_DIR + 'cache/'
    6363
    6464# This only works for single core devices so far.
     
    254254        # Delete the disk cache if any to ensure a clean test run.
    255255        # This is like what's done in ChromiumPort.setup_test_run but on the device.
    256         self._run_adb_command(['shell', 'rm', '-r', DEVICE_APP_CACHE_DIR])
     256        self._run_adb_command(['shell', 'rm', '-r', DRT_APP_CACHE_DIR])
    257257
    258258        # Start the HTTP server so that the device can access the test cases.
Note: See TracChangeset for help on using the changeset viewer.