summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the missing EOL in last line of crashed tests list file. Also fixed ↵Guang Zhu2009-08-201-10/+11
| | | | some whitespaces.
* - changed removeAccount() to be handled by the AccountAuthenticator and to ↵Fred Quintana2009-08-142-25/+22
| | | | | | | return a boolean - changed the IAccountManager API to use oneway IPCs - changed the AccountManager to not have to start a thread for any of the calls (versus every call)
* am a8dfe24d: Adds the ability to configure the mock Geolocation service from ↵Steve Block2009-08-141-1/+13
|\ | | | | | | | | | | | | | | | | DumpRenderTree. Merge commit 'a8dfe24da014b52d7ae93c3fbd7a8b88ec336572' * commit 'a8dfe24da014b52d7ae93c3fbd7a8b88ec336572': Adds the ability to configure the mock Geolocation service from DumpRenderTree.
| * Adds the ability to configure the mock Geolocation service from DumpRenderTree.Steve Block2009-08-141-1/+13
| |
* | Merge change 20918Android (Google) Code Review2009-08-132-1/+67
|\ \ | |/ |/| | | | | * changes: Wrap up the stress test into a single script make test_restore.sh return a value signifying success or failure
| * Wrap up the stress test into a single scriptOmari Stephens2009-08-122-1/+67
| | | | | | | | make test_restore.sh return a value signifying success or failure
* | Backup participants must now hold the BACKUP_DATA permissionChristopher Tate2009-08-131-0/+1
| | | | | | | | | | | | | | | | Packages that do not use android.permission.BACKUP_DATA will neither be backed up nor restored. That permission is currently signature-only. In the future if access to the backup/restore infrastructure is made available to arbitrary 3rd party applications, the permission checks (and indeed, the permission itself) can simply be removed.
* | Merge change 21171Android (Google) Code Review2009-08-131-0/+23
|\ \ | | | | | | | | | | | | * changes: Allow max_retires to be set to infinite.
| * | Allow max_retires to be set to infinite.Wink Saville2009-08-131-0/+23
| | | | | | | | | | | | | | | | | | Setting max_retires to infinite sets mRetryForever to true and therefore isRetryNeeded will always be true. This is better than an alternative which is to set max_retires to a large value such as 2147483647.
* | | Merge change 21166Android (Google) Code Review2009-08-131-5/+13
|\ \ \ | | | | | | | | | | | | | | | | * changes: Rename bcdByteToInt to gsmBcdByteToInt and beBcdByteToInt to cdmaBcdByteToInt.
| * | | Rename bcdByteToInt to gsmBcdByteToInt and beBcdByteToInt to cdmaBcdByteToInt.Wink Saville2009-08-131-5/+13
| |/ /
* | | Set V8 flag --expose_gc in TestShellActivity.Feng Qian2009-08-131-0/+5
|/ / | | | | | | Page cycler calls window.gc between pages, JSC exposes window.gc by default, and V8 requires the flag to be set.
* | Merge change 21006Android (Google) Code Review2009-08-121-0/+69
|\ \ | | | | | | | | | | | | * changes: Fix the issue of incorrect conversion of the plus sign in a dial string.
| * | Fix the issue of incorrect conversion of the plus sign in a dial string.Tang@Motorola.com2009-08-121-0/+69
| |/ | | | | | | | | | | | | | | | | | | The issue is that the plus sign in a dial string is always converted to the IDP (International Dial Prefix). This fix implements a plus sign conversion mechanism based on the default telephone numbering system that the phone is activated and the current telephone number system that the phone is camped on. Currently, we only support the cases where the default and current telephone numbering system are NANP.
* | am 3b5f4a84: Merge change 20806 into donutBrett Chabot2009-08-122-10/+3
|\ \ | |/ |/| | | | | | | | | Merge commit '3b5f4a841e9e87442eeacd7773bd2a6ca8710019' * commit '3b5f4a841e9e87442eeacd7773bd2a6ca8710019': Remove flaky auto complete tests from continuous.
| * Remove flaky auto complete tests from continuous.Brett Chabot2009-08-112-10/+3
| | | | | | | | BUG 2036517
* | git rid of the "x" prefixes for testOmari Stephens2009-08-111-1/+1
| |
* | The triumphant return of the shell scripts, with bugreports, less code dup, andOmari Stephens2009-08-113-50/+96
| | | | | | | | enhanced readability.
* | Disable Worker in DumpRenderTree until the issue with dumpAsText is fixed.Guang Zhu2009-08-111-1/+1
| |
* | New ContentProviderOperation to assert values during batch.Jeff Sharkey2009-08-101-21/+51
| | | | | | | | | | | | | | | | | | | | | | | | When performing a set of batch operations, some callers need to enforce that a query has specific values. For example, when persisting edited Contact values, we need to assert that the RawContacts.VERSION matches the version we read out through queryEntities(). This change adds a new TYPE_ASSERT that uses withValues() and withSelection(), and checks all values when applying the batch operation, bailing if any values don't match.
* | Make GSM 7-bit encoding properly deal with initial padding.Tammo Spalink2009-08-101-2/+48
| | | | | | | | | | | | | | For CDMA, clean up the GSM encapsulation to properly align user data payload after the user data header. Addresses http://buganizer/issue?id=2007011
* | Add configurable data-retry.Wink Saville2009-08-092-0/+197
| | | | | | | | | | | | | | Add RetryManager and change GsmDataConnectionTracker and CdmaDataConnectionTracker to use it. Add TelephonyUtilsTest which tests RetryManager.
* | Merge change 20338Android (Google) Code Review2009-08-062-4/+23
|\ \ | | | | | | | | | | | | * changes: Wipe data on backend before a backup run Append the date to 3.txt so that we can see if/when backup failures occurred solely from the device/server state Note that these files will probably be deleted from the tree immediately, to be replaced by the ruby versions.
| * | Wipe data on backend before a backup runOmari Stephens2009-08-062-4/+23
| | | | | | | | | | | | | | | | | | | | | Append the date to 3.txt so that we can see if/when backup failures occurred solely from the device/server state Note that these files will probably be deleted from the tree immediately, to be replaced by the ruby versions.
* | | Enable Workers in Dump Render Tree.Ben Murdoch2009-08-061-0/+1
| | |
* | | am ff6585cb: Merge change 20144 into donutAndroid (Google) Code Review2009-08-053-68/+139
|\ \ \ | | |/ | |/| | | | | | | | | | | | | Merge commit 'ff6585cbb0e5e42adf056b4a074b9f3683b853c1' * commit 'ff6585cbb0e5e42adf056b4a074b9f3683b853c1': Remove flaky MonitorTest#testInterrupt from continuous, and attempt to make
| * | Merge change 20144 into donutAndroid (Google) Code Review2009-08-053-68/+139
| |\ \ | | | | | | | | | | | | | | | | * changes: Remove flaky MonitorTest#testInterrupt from continuous, and attempt to make AutoCompletePopup tests more reliable.
| | * | Remove flaky MonitorTest#testInterrupt from continuous, and attempt to makeBrett Chabot2009-08-053-68/+139
| | | | | | | | | | | | | | | | | | | | | | | | AutoCompletePopup tests more reliable. Bugs 2036517 and 1636810.
* | | | fix CDMA SMS ASCII decode and mappingTammo Spalink2009-08-051-0/+6
| |_|/ |/| |
* | | am 7a07f179: Merge change 20006 into donutAndroid (Google) Code Review2009-08-041-0/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '7a07f1797684597a3b932aa0b365049d3e7d6ff3' * commit '7a07f1797684597a3b932aa0b365049d3e7d6ff3': After each test, the WebView cache should be cleared, otherwise the cache data will pile up.
| * | After each test, the WebView cache should be cleared, otherwise the cache ↵Guang Zhu2009-08-041-0/+1
| |/ | | | | | | data will pile up.
* | Merge change 9631Android (Google) Code Review2009-08-042-24/+84
|\ \ | | | | | | | | | | | | * changes: Make test_backup and test_restore usable again
| * | Make test_backup and test_restore usable againOmari Stephens2009-08-032-24/+84
| | | | | | | | | | | | | | | | | | | | | - Add copyright headers - Allow the user to pass options (like '-s FOO') to adb - Restart device adb as root if needed - Make test_restore to infer a restore set
* | | am 8c5b3e2f: Change browser reliability test to start a new activity for ↵Guang Zhu2009-08-032-5/+12
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | each url Merge commit '8c5b3e2fa60e29e45c97bf83b2aa8c6505987f82' * commit '8c5b3e2fa60e29e45c97bf83b2aa8c6505987f82': Change browser reliability test to start a new activity for each url
| * | Change browser reliability test to start a new activity for each urlGuang Zhu2009-08-032-5/+12
| | |
| * | DO NOT MERGEGrace Kloba2009-08-031-1/+4
| | | | | | | | | | | | Fix the build, which has been also fixed separately in the master
* | | fix the build. handleSslErrorRequest needs a return value now.Grace Kloba2009-08-031-1/+4
| |/ |/|
* | am 25dff70f: Merge change 9039 into donutAndroid (Google) Code Review2009-07-3010-0/+110
|\ \ | |/ | | | | | | | | | | Merge commit '25dff70f153529b87f5ad4a92f4de21e8950b1de' * commit '25dff70f153529b87f5ad4a92f4de21e8950b1de': Fix #2018814: System cannot correctly render assets with "wrap_content" attribute in QVGA
| * Fix #2018814: System cannot correctly render assets with "wrap_content" ↵Dianne Hackborn2009-07-2910-0/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | attribute in QVGA It turns out we were not returning the density for anything retrieved from a TypedArray... which basically means any bitmap references from a layout or style...!!! This is now fixed. Also fiddle with the density compatibility mode to turn on smoothing in certain situations, helping the look of things when they need to scale and we couldn't do the scaling at load time.
* | am 65e5438d: Merge change 8966 into donutAndroid (Google) Code Review2009-07-301-2/+114
|\ \ | |/ | | | | | | | | | | Merge commit '65e5438df929ceb8c44fd930b2a363e021914bd0' * commit '65e5438df929ceb8c44fd930b2a363e021914bd0': Add tests for android.net.vpn.
| * Merge change 8966 into donutAndroid (Google) Code Review2009-07-291-2/+114
| |\ | | | | | | | | | | | | * changes: Add tests for android.net.vpn.
| | * Add tests for android.net.vpn.Hung-ying Tyan2009-07-291-2/+114
| | |
* | | am ad346278: Merge change 8208 into donutAndroid (Google) Code Review2009-07-291-11/+0
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit 'ad346278fe129a341543d4a75bf9cc08c50742f8' * commit 'ad346278fe129a341543d4a75bf9cc08c50742f8': Removing MD2
| * | Merge change 8208 into donutAndroid (Google) Code Review2009-07-291-11/+0
| |\ \ | | |/ | |/| | | | | | | * changes: Removing MD2
| | * Removing MD2Urs Grob2009-07-221-11/+0
| | |
* | | Wire in the AppCache out-of-space callbackAndrei Popescu2009-07-291-1/+1
| | |
* | | allow illegal subparam sizes for CDMA SMSTammo Spalink2009-07-291-0/+10
| | | | | | | | | | | | addresses http://buganizer/issue?id=2008358
* | | checkin for port forwarding through adb, gets access to external network via ↵Guang Zhu2009-07-275-38/+439
| | | | | | | | | | | | USB, this also adds in related plumbing for running the http hosted tests, but will not enable those tests yet.
* | | am 0fdedd00: Merge change 8612 into donutAndroid (Google) Code Review2009-07-271-55/+4
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '0fdedd00c510e62223e47d0c5e605b2350d2d304' * commit '0fdedd00c510e62223e47d0c5e605b2350d2d304': Remove visibility checks from SearchManager tests
| * | Remove visibility checks from SearchManager testsBjorn Bringert2009-07-261-55/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the search UI is handled by the system process, and the service calls to show and hide it are asynchronous, the tests that checked the visibility of the search UI were very flaky. This change sclaes the tests back to just check that nothing crashes when showing and hiding the search UI. Fixes http://b/issue?id=1993675