1. 16 Nov, 2016 27 commits
  2. 15 Nov, 2016 4 commits
  3. 24 Oct, 2016 1 commit
  4. 23 Sep, 2016 1 commit
  5. 25 Aug, 2016 4 commits
  6. 02 Aug, 2016 1 commit
  7. 13 Jul, 2016 1 commit
    • Junichi Uekawa's avatar
      DO NOT MERGE: Only test up to 140 long file names. · b0a26b19
      Junichi Uekawa authored
      test_mkdirs pretends to test creating many directories but it is in fact
      testing for a very long file name.
      
      Example directory name it was creating looks like:
      /data/data/android.core.tests.runner/cache/harmony-test-FileTest/1/0...
      (with lots of 0s).
      
      TEST=cts-tradefed
        run cts -p android.core.tests.libcore.package.harmony_java_io
      BUG=27370759
      
      Change-Id: I7ee631de83425bbe91d28c7bd06d7f799ec5dc6d
      b0a26b19
  8. 30 Jun, 2016 1 commit
    • Neil Fuller's avatar
      Remove a race hazard from the execrable Support_TestWebServer · e2137568
      Neil Fuller authored
      Use of this class was resulting in threads being left in a
      spinning state due to the accept socket being closed but
      "running" still being true: the exception thrown from
      Socket.accept() was being swallowed.
      
      This is likely because there is a race between the thread
      actually starting (i.e. run() actually executing)
      and, in short-lived tests, the server being shutdown:
      if AcceptThread.close() was called before AcceptThread.run()
      then when run() actually executed it would loop forever.
      
      Some dead code has been removed.
      
      Test: Ran the CTS tests
      Bug: 29820565
      Bug: 29365528
      (cherry picked from commit 5558171b)
      
      Change-Id: I895ecbd171c9495ddda85de740519ba1b2c51d62
      e2137568