Changeset 152170 in webkit


Ignore:
Timestamp:
Jun 28, 2013 9:08:24 AM (11 years ago)
Author:
Christophe Dumez
Message:

Clean up temporary files created by the bindings test script
https://bugs.webkit.org/show_bug.cgi?id=118189

Reviewed by Kentaro Hara.

Remove temporary files created by preprocess-idls.pl script after
the bindings tests are executed.

Based on Blink 153236 by Kentaro Hara <haraken@chromium.org>.

  • Scripts/webkitpy/bindings/main.py:

(BindingsTests.main):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r152144 r152170  
     12013-06-28  Christophe Dumez  <ch.dumez@sisa.samsung.com>
     2
     3        Clean up temporary files created by the bindings test script
     4        https://bugs.webkit.org/show_bug.cgi?id=118189
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Remove temporary files created by preprocess-idls.pl script after
     9        the bindings tests are executed.
     10
     11        Based on Blink 153236 by Kentaro Hara <haraken@chromium.org>.
     12
     13        * Scripts/webkitpy/bindings/main.py:
     14        (BindingsTests.main):
     15
    1162013-06-26  Dean Jackson  <dino@apple.com>
    217
  • trunk/Tools/Scripts/webkitpy/bindings/main.py

    r152100 r152170  
    162162            print 'Failed to generate a supplemental dependency file.'
    163163            os.remove(supplemental_dependency_file)
     164            os.remove(window_constructors_file)
     165            os.remove(workerglobalscope_constructors_file)
     166            os.remove(sharedworkerglobalscope_constructors_file)
     167            os.remove(dedicatedworkerglobalscope_constructors_file)
    164168            return -1
    165169
     
    171175
    172176        os.remove(supplemental_dependency_file)
     177        os.remove(window_constructors_file)
     178        os.remove(workerglobalscope_constructors_file)
     179        os.remove(sharedworkerglobalscope_constructors_file)
     180        os.remove(dedicatedworkerglobalscope_constructors_file)
    173181        print ''
    174182        if all_tests_passed:
Note: See TracChangeset for help on using the changeset viewer.