Changeset 195245 in webkit


Ignore:
Timestamp:
Jan 18, 2016 8:05:22 PM (8 years ago)
Author:
clopez@igalia.com
Message:

[GTK][EFL] Layout tests abort with PulseAudioSanitizer instance has no attribute '_pa_module_index' when the build is not ready.
https://bugs.webkit.org/show_bug.cgi?id=153216

Reviewed by Michael Catanzaro.

  • Scripts/webkitpy/port/pulseaudio_sanitizer.py:

(PulseAudioSanitizer.init): initialize _pa_module_index in the constructor.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r195240 r195245  
     12016-01-18  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [GTK][EFL] Layout tests abort with PulseAudioSanitizer instance has no attribute '_pa_module_index' when the build is not ready.
     4        https://bugs.webkit.org/show_bug.cgi?id=153216
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/webkitpy/port/pulseaudio_sanitizer.py:
     9        (PulseAudioSanitizer.__init__): initialize _pa_module_index in the constructor.
     10
    1112016-01-18  Nan Wang  <n_wang@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/pulseaudio_sanitizer.py

    r139095 r195245  
    3838# Shared by GTK and EFL for pulseaudio sanitizing before running tests.
    3939class PulseAudioSanitizer:
     40    def __init__(self):
     41        self._pa_module_index = -1
     42
    4043    def unload_pulseaudio_module(self):
    4144        # Unload pulseaudio's module-stream-restore, since it remembers
Note: See TracChangeset for help on using the changeset viewer.