summaryrefslogtreecommitdiffstats
path: root/sched/tests/com
Commit message (Collapse)AuthorAgeFilesLines
* Update VersionTestmikaelpeltier2015-06-261-8/+31
| | | | | | | | | - Engineering versions are no longer comparable. - Versions with O as release or subrelease code are longer comparable (0 is reserved). Change-Id: I4bcbade9bc2201c7b25230244282f51d61e816d9 (cherry picked from commit d3af6a190675471161d8b080eca28ff4e7ee0ec9)
* Move Version to schedlibYohann Roussel2015-06-254-1/+272
| | | | | | (cherry picked from commit 5328d72913fb1f702143db28e19bb54e22466149) Change-Id: Iccd6843cc56a6a2484105e9c6690bf8a04fddc7e
* Remove assertion status from Jack sanity checksJean-Marie Henaff2015-06-247-33/+0
| | | | | | | | | - adds a property to set when invoking ant to disable assertion (-Dtests.disable-assertions=true) - remove assertion status modification done in tests (cherry picked from commit 9fcbabb82e5292b7df75ea396eddd34ea8a1558c) Change-Id: Ibfc41fc8b0e7e47c597d3f92e420dfb151681396
* Add support for case-sensitive FS in ReadWriteZipFSBenoit Lamarche2015-06-171-11/+20
| | | | | | | | | | | | Also: - deleted ZipInputOutputVFSCodec which is unused and similar to ZipFSCodec. - introduce constants in JackLibrary for numGroups and groupSize. Bug: 21796981 (cherry picked from commit 37f4d45c334a2e15f0d8aee2fadb2cd823b4ee54) Change-Id: Id744da9c97a04adf728b8688c91a0816715d5cce
* Add new getPathFromRoot API in VFSBenoit Lamarche2015-05-291-7/+190
| | | | | | | | And use it to remove JayceFileImporter hack. (cherry picked from commit 7a73a0418d5524240b7c97d9801b7db954aa018c) Change-Id: I211bc52211d7373c22a02d83be114774ebca7520
* Fix MessageDigestFS by creating specific VDirsBenoit Lamarche2015-05-291-2/+0
| | | | | | | | Bug: 20684001 (cherry picked from commit 60f97293c68fbb7382b2ae8c811bcbe7c646aa17) Change-Id: Iee65e010e3f1ba81367958d460aafe37ee051ab0
* Remove STOPSHIP in VFSTestBenoit Lamarche2015-04-291-1/+1
| | | | | | | I've added a bug to track the issue instead: Bug: 20684001 Change-Id: Ia78386c8376cfe81828a1f13d9ed7322812407d0
* Remove STOPSHIP regarding ReadWriteZipFS locationsBenoit Lamarche2015-04-241-1/+0
| | | | | | | I've added a bug to track the issue instead: Bug: 20547976 Change-Id: I241c491ff3395ac13dde879a656f69ed274cc171
* Add InputStreamProvider and OutputStreamProvidermikaelpeltier2015-03-231-2/+2
| | | | | | | - Add common interface between VFile and StreamFile that will allow to read or write them. Change-Id: I1721932c7e68770edae53a431d4a9a3ca664ae72
* Add base directory support in TokenIterator and use it in the ServerTaskInsideVMJean-Philippe Lesot2015-03-121-1/+114
| | | | Change-Id: I2ac1048bf511b7f84774a9e1970eb407517cf6c8
* Add more VFS testsBenoit Lamarche2015-02-251-103/+340
| | | | Change-Id: I9063cc77b2d96d3f3a02fe93c33d83a38a2066fb
* Remove old VFSBenoit Lamarche2015-02-231-116/+5
| | | | Change-Id: I7ebd6d1f28158e1a95932774f870c91ded28dc48
* Retry adding CachedDirectFSBenoit Lamarche2015-02-061-3/+46
| | | | Change-Id: I389b367f5a425ea58733b8f8dc8533464d3974d7
* Add new VFile delete APIBenoit Lamarche2015-02-041-29/+39
| | | | | | And remove VDir delete API Change-Id: I628b96ba1d51a3736bf996a611832c1a2c844af3
* Add deletion tests in VFSTestBenoit Lamarche2015-02-041-0/+60
| | | | Change-Id: I9767ec1dc3b4edfd77faefda8ac51c1c19126bd9
* Add VFSToVFSWrapper and ReadWriteZipFSBenoit Lamarche2015-01-271-0/+36
| | | | Change-Id: I447734418fb04e2e0e3186dcbb1c37c5b769e2d4
* Add new WriteZipVFSBenoit Lamarche2015-01-271-0/+35
| | | | Change-Id: Id80de67d1063a608b3a8cab47126b4ed15bfe07f
* Add new ReadZipVFSBenoit Lamarche2015-01-271-0/+35
| | | | Change-Id: Id9dbfd2145563a6f1c7c5a677c70dd250b3f0184
* Add new PrefixedFSBenoit Lamarche2015-01-261-0/+45
| | | | Change-Id: I4b71e032221ccfe2ebc4fd5d110aa1b389dc4812
* Add new MessageDigestFSBenoit Lamarche2015-01-231-0/+62
| | | | Change-Id: I494ba2024f731e8324f62e52a710a90b972392a3
* Add CaseInsensitive VFS, and re-work VFS frameworkJean-Philippe Lesot2015-01-211-1/+50
| | | | | | | | | | | | - Make NotFileOrDirectoryException hierarchy use Location, and rework messages - Extract and modify DirectVFile and DirectVDir from DirectFS to ParentVFile and ParentVDir. Remove getNativePath() method - Add a InMemoryVDir which keep sub-element in memory - Add in BaseVFS multiples methods to get locations - Add isClosed support in BaseVFS and use it Change-Id: Ic74dae42fc3a2cd20579fb2737068c3d17d54fe8
* Update VFSTestBenoit Lamarche2015-01-161-52/+153
| | | | Change-Id: I932eeff99153ca62c2e14eef1d72d52ca4ced701
* Add a VFS framework which is simpler to implement and interceptJean-Philippe Lesot2015-01-161-0/+49
| | | | | | | | | | | | | - Remove old VFS class - Add VFS, VFile, VDir and VElement as a public interface of a non-input/output VFS - Add BaseVFS, BaseVFile, BaseVDir and BaseVElement as base implementation classes for a VFS - Add Generic* to map InputVFS, OutputVFS and InputOutputVFS to a VFS - Add a DirectFS as a VFS which is backed by a file system - Add a DeflateFS as a filter VFS which deflate/inflate file Change-Id: Ifb9e1b0d801d52719e57b48d65ae9aab58f6f7df
* Add VFSTestBenoit Lamarche2015-01-142-3/+176
| | | | Change-Id: Ic9b884d1a3543f63ded96b0ffc9fcbd59ef650f9
* Fix command line parsing of empty argumentYohann Roussel2014-12-041-0/+57
| | | | | | | Without this fix the added test was failing with a StringIndexOutOfBoundsException. Change-Id: Ie312d237e6cbf5365b6167168faac6f1f945b755
* Move FileUtils to SchedLibBenoit Lamarche2014-10-223-1/+105
| | | | Change-Id: I14754239161e7fcbebb8205e2b76e33665be76e7
* Improve TokenIteratorTest.Jean-Philippe Lesot2014-06-251-2/+100
| | | | Change-Id: I0f2b7e9982e839b5219ae57be7da81ef62c5edca
* Introduce TokenIterator.Jean-Philippe Lesot2014-06-253-1/+420
| | | | Change-Id: I042b16b70d391f6f84724c1475303d248b19f239
* Remove all sched tests that fail.Jean-Marie Henaff2014-06-1012-969/+4
| | | | Change-Id: Ib6e4efa49b9b75c6f4c002eec1acc57f12ed0295
* Replace abstract class AbstractMarkerManager by an interface.Yohann Roussel2014-04-256-10/+10
| | | | Change-Id: I0520b0704c7b00fe6836d95e33270d879652405c
* Initial Jack import.Yohann Roussel2014-03-20103-0/+4741
Change-Id: I953cf0a520195a7187d791b2885848ad0d5a9b43