Changeset 269972 in webkit


Ignore:
Timestamp:
Nov 18, 2020 12:02:50 PM (3 years ago)
Author:
Chris Dumez
Message:

[Rosetta] webaudio/BiquadFilter/tail-time-*.html tests are flaky
https://bugs.webkit.org/show_bug.cgi?id=219096

Reviewed by Geoffrey Garen.

  • platform/mac/TestExpectationsRosetta:

Unskip tests as they should no longer be flaky.

  • resources/testharnessreport.js:

(self.testRunner.add_completion_callback):
Strip some text from tests output that tends to cause flakiness.

  • webaudio/BiquadFilter/tail-time-allpass-expected.txt:
  • webaudio/BiquadFilter/tail-time-bandpass-expected.txt:
  • webaudio/BiquadFilter/tail-time-highpass-expected.txt:
  • webaudio/BiquadFilter/tail-time-highshelf-expected.txt:
  • webaudio/BiquadFilter/tail-time-lowpass-expected.txt:
  • webaudio/BiquadFilter/tail-time-lowshelf-expected.txt:
  • webaudio/BiquadFilter/tail-time-notch-expected.txt:
  • webaudio/BiquadFilter/tail-time-peaking-expected.txt:

Rebaseline WPT tests now that their output has been simplified.

Location:
trunk/LayoutTests
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r269968 r269972  
     12020-11-18  Chris Dumez  <cdumez@apple.com>
     2
     3        [Rosetta] webaudio/BiquadFilter/tail-time-*.html tests are flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=219096
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * platform/mac/TestExpectationsRosetta:
     9        Unskip tests as they should no longer be flaky.
     10
     11        * resources/testharnessreport.js:
     12        (self.testRunner.add_completion_callback):
     13        Strip some text from tests output that tends to cause flakiness.
     14
     15        * webaudio/BiquadFilter/tail-time-allpass-expected.txt:
     16        * webaudio/BiquadFilter/tail-time-bandpass-expected.txt:
     17        * webaudio/BiquadFilter/tail-time-highpass-expected.txt:
     18        * webaudio/BiquadFilter/tail-time-highshelf-expected.txt:
     19        * webaudio/BiquadFilter/tail-time-lowpass-expected.txt:
     20        * webaudio/BiquadFilter/tail-time-lowshelf-expected.txt:
     21        * webaudio/BiquadFilter/tail-time-notch-expected.txt:
     22        * webaudio/BiquadFilter/tail-time-peaking-expected.txt:
     23        Rebaseline WPT tests now that their output has been simplified.
     24
    1252020-11-18  Antoine Quint  <graouts@webkit.org>
    226
  • trunk/LayoutTests/platform/mac/TestExpectationsRosetta

    r269967 r269972  
    3838webaudio/Analyser/realtimeanalyser-byte-data.html [ Failure ]
    3939webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]
    40 webaudio/BiquadFilter/tail-time-allpass.html [ Failure ]
    41 webaudio/BiquadFilter/tail-time-bandpass.html [ Failure ]
    42 webaudio/BiquadFilter/tail-time-highpass.html [ Failure ]
    43 webaudio/BiquadFilter/tail-time-highshelf.html [ Failure ]
    44 webaudio/BiquadFilter/tail-time-lowpass.html [ Failure ]
    45 webaudio/BiquadFilter/tail-time-peaking.html [ Failure ]
    4640webaudio/Oscillator/no-dezippering.html [ Failure ]
    4741webaudio/convolution-mono-mono.html [ Failure ]
  • trunk/LayoutTests/resources/testharnessreport.js

    r269853 r269972  
    9797                  });
    9898                  testName = testName.replace(/ \(contains [0-9]+ different values\)./, ".");
     99                  testName = testName.replace(/ \(contains 1 different value\)./, ".");
     100                  testName = testName.replace(/: Actual Tail Frame [0-9]+ is greater than or equal to [0-9]+./, ".");
    99101            }
    100102
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-allpass-expected.txt

    r269853 r269972  
    66PASS Audit report
    77PASS > [allpass-complex-roots] complex roots
    8 PASS   Complex roots: Biquad({"type":"allpass","Q":200,"frequency":4096}): Actual Tail Frame 2560 is greater than or equal to 2317.
     8PASS   Complex roots: Biquad({"type":"allpass","Q":200,"frequency":4096}).
    99PASS   Complex roots: Biquad({"type":"allpass","Q":200,"frequency":4096}): output[0:127] is not constantly 0.
    1010PASS   Complex roots: Biquad({"type":"allpass","Q":200,"frequency":4096}): output[128:255] is not constantly 0.
     
    2929PASS < [allpass-complex-roots] All assertions passed. (total 21 assertions)
    3030PASS > [allpass-real-distinct-roots] real distinct roots
    31 PASS   Distinct roots: Biquad({"type":"allpass","Q":0.001,"frequency":2048}): Actual Tail Frame 7296 is greater than or equal to 4822.
     31PASS   Distinct roots: Biquad({"type":"allpass","Q":0.001,"frequency":2048}).
    3232PASS   Distinct roots: Biquad({"type":"allpass","Q":0.001,"frequency":2048}): output[0:127] is not constantly 0.
    3333PASS   Distinct roots: Biquad({"type":"allpass","Q":0.001,"frequency":2048}): output[128:255] is not constantly 0.
     
    7171PASS < [allpass-real-distinct-roots] All assertions passed. (total 40 assertions)
    7272PASS > [allpass-repeated-roots] repeated real root
    73 PASS   Repeated roots: Biquad({"type":"allpass","Q":0.5,"frequency":2048}): Actual Tail Frame 106 is greater than or equal to 17.
     73PASS   Repeated roots: Biquad({"type":"allpass","Q":0.5,"frequency":2048}).
    7474PASS   Repeated roots: Biquad({"type":"allpass","Q":0.5,"frequency":2048}): output[0:127] is not constantly 0.
    7575PASS   Repeated roots: Biquad({"type":"allpass","Q":0.5,"frequency":2048}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-bandpass-expected.txt

    r269853 r269972  
    66PASS Audit report
    77PASS > [bpf-complex-roots] complex roots
    8 PASS   BPF complex roots: Biquad({"type":"bandpass","Q":200,"frequency":4096}): Actual Tail Frame 2176 is greater than or equal to 2039.
     8PASS   BPF complex roots: Biquad({"type":"bandpass","Q":200,"frequency":4096}).
    99PASS   BPF complex roots: Biquad({"type":"bandpass","Q":200,"frequency":4096}): output[0:127] is not constantly 0.
    1010PASS   BPF complex roots: Biquad({"type":"bandpass","Q":200,"frequency":4096}): output[128:255] is not constantly 0.
     
    2626PASS < [bpf-complex-roots] All assertions passed. (total 18 assertions)
    2727PASS > [bpf-real-distinct-roots] real distinct roots
    28 PASS   BPF real distinct roots: Biquad({"type":"bandpass","Q":0.001,"frequency":4096}): Actual Tail Frame 2688 is greater than or equal to 2437.
     28PASS   BPF real distinct roots: Biquad({"type":"bandpass","Q":0.001,"frequency":4096}).
    2929PASS   BPF real distinct roots: Biquad({"type":"bandpass","Q":0.001,"frequency":4096}): output[0:127] is not constantly 0.
    3030PASS   BPF real distinct roots: Biquad({"type":"bandpass","Q":0.001,"frequency":4096}): output[128:255] is not constantly 0.
     
    5050PASS < [bpf-real-distinct-roots] All assertions passed. (total 22 assertions)
    5151PASS > [bpf-repeated-roots] repeated real root
    52 PASS   BPF repeated roots: Biquad({"type":"bandpass","Q":0.5,"frequency":2048}): Actual Tail Frame 106 is greater than or equal to 16.
     52PASS   BPF repeated roots: Biquad({"type":"bandpass","Q":0.5,"frequency":2048}).
    5353PASS   BPF repeated roots: Biquad({"type":"bandpass","Q":0.5,"frequency":2048}): output[0:127] is not constantly 0.
    5454PASS   BPF repeated roots: Biquad({"type":"bandpass","Q":0.5,"frequency":2048}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-highpass-expected.txt

    r269853 r269972  
    77PASS Audit report
    88PASS > [hpf-complex-roots] complex roots
    9 PASS   HPF complex roots: Biquad({"type":"highpass","Q":40,"frequency":4096}): Actual Tail Frame 2304 is greater than or equal to 2080.
     9PASS   HPF complex roots: Biquad({"type":"highpass","Q":40,"frequency":4096}).
    1010PASS   HPF complex roots: Biquad({"type":"highpass","Q":40,"frequency":4096}): output[0:127] is not constantly 0.
    1111PASS   HPF complex roots: Biquad({"type":"highpass","Q":40,"frequency":4096}): output[128:255] is not constantly 0.
     
    2828PASS < [hpf-complex-roots] All assertions passed. (total 19 assertions)
    2929PASS > [hpf-real-distinct-roots] real distinct roots
    30 PASS   HPF real distinct roots: Biquad({"type":"highpass","Q":-50,"frequency":2048}): Actual Tail Frame 2560 is greater than or equal to 408.
     30PASS   HPF real distinct roots: Biquad({"type":"highpass","Q":-50,"frequency":2048}).
    3131PASS   HPF real distinct roots: Biquad({"type":"highpass","Q":-50,"frequency":2048}): output[0:127] is not constantly 0.
    3232PASS   HPF real distinct roots: Biquad({"type":"highpass","Q":-50,"frequency":2048}): output[128:255] is not constantly 0.
     
    3636PASS < [hpf-real-distinct-roots] All assertions passed. (total 6 assertions)
    3737PASS > [hpf-repeated-root] repeated real root
    38 PASS   HPF repeated roots (approximately): Biquad({"type":"highpass","Q":-6.020600,"frequency":4096}): Actual Tail Frame 11 is greater than or equal to 3.
     38PASS   HPF repeated roots (approximately): Biquad({"type":"highpass","Q":-6.020600,"frequency":4096}).
    3939PASS   HPF repeated roots (approximately): Biquad({"type":"highpass","Q":-6.020600,"frequency":4096}): output[0:127] is not constantly 0.
    4040PASS   HPF repeated roots (approximately): Biquad({"type":"highpass","Q":-6.020600,"frequency":4096}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    4141PASS < [hpf-repeated-root] All assertions passed. (total 3 assertions)
    4242PASS > [hpf-real-roots-2] complex roots
    43 PASS   HPF repeated roots 2: Biquad({"type":"highpass","Q":-100,"frequency":4096}): Actual Tail Frame 256 is greater than or equal to 0.
     43PASS   HPF repeated roots 2: Biquad({"type":"highpass","Q":-100,"frequency":4096}).
    4444PASS   HPF repeated roots 2: Biquad({"type":"highpass","Q":-100,"frequency":4096}): output[0:127] is not constantly 0.
    4545PASS   HPF repeated roots 2: Biquad({"type":"highpass","Q":-100,"frequency":4096}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-highshelf-expected.txt

    r269853 r269972  
    55PASS Audit report
    66PASS > [highshelf-complex-roots] complex roots
    7 PASS   Highshelf complex roots: Biquad({"type":"highshelf","gain":40,"frequency":2048}): Actual Tail Frame 110 is greater than or equal to 19.
     7PASS   Highshelf complex roots: Biquad({"type":"highshelf","gain":40,"frequency":2048}).
    88PASS   Highshelf complex roots: Biquad({"type":"highshelf","gain":40,"frequency":2048}): output[0:127] is not constantly 0.
    99PASS   Highshelf complex roots: Biquad({"type":"highshelf","gain":40,"frequency":2048}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    1010PASS < [highshelf-complex-roots] All assertions passed. (total 3 assertions)
    1111PASS > [highshelf-repeated-roots] repeated real root
    12 PASS   Highshelf repeated roots: Biquad({"type":"highshelf","gain":40,"frequency":0}): Actual Tail Frame 1 is greater than or equal to 1.
    13 PASS   Highshelf repeated roots: Biquad({"type":"highshelf","gain":40,"frequency":0}): output[0:127] is not constantly 0 (contains 1 different value).
     12PASS   Highshelf repeated roots: Biquad({"type":"highshelf","gain":40,"frequency":0}).
     13PASS   Highshelf repeated roots: Biquad({"type":"highshelf","gain":40,"frequency":0}): output[0:127] is not constantly 0.
    1414PASS   Highshelf repeated roots: Biquad({"type":"highshelf","gain":40,"frequency":0}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    1515PASS < [highshelf-repeated-roots] All assertions passed. (total 3 assertions)
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-lowpass-expected.txt

    r269853 r269972  
    99PASS Audit report
    1010PASS > [lpf-complex-roots] complex roots
    11 PASS   LPF complex roots: Biquad({"type":"lowpass","Q":40,"frequency":4096}): Actual Tail Frame 2304 is greater than or equal to 2080.
     11PASS   LPF complex roots: Biquad({"type":"lowpass","Q":40,"frequency":4096}).
    1212PASS   LPF complex roots: Biquad({"type":"lowpass","Q":40,"frequency":4096}): output[0:127] is not constantly 0.
    1313PASS   LPF complex roots: Biquad({"type":"lowpass","Q":40,"frequency":4096}): output[128:255] is not constantly 0.
     
    3030PASS < [lpf-complex-roots] All assertions passed. (total 19 assertions)
    3131PASS > [lpf-real-distinct-roots] real distinct roots
    32 PASS   LPF real distinct roots: Biquad({"type":"lowpass","Q":-50,"frequency":2048}): Actual Tail Frame 1920 is greater than or equal to 1700.
     32PASS   LPF real distinct roots: Biquad({"type":"lowpass","Q":-50,"frequency":2048}).
    3333PASS   LPF real distinct roots: Biquad({"type":"lowpass","Q":-50,"frequency":2048}): output[0:127] is not constantly 0.
    3434PASS   LPF real distinct roots: Biquad({"type":"lowpass","Q":-50,"frequency":2048}): output[128:255] is not constantly 0.
     
    4848PASS < [lpf-real-distinct-roots] All assertions passed. (total 16 assertions)
    4949PASS > [lpf-repeated-root] repeated real root
    50 PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":-6.020600,"frequency":4096}): Actual Tail Frame 11 is greater than or equal to 3.
     50PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":-6.020600,"frequency":4096}).
    5151PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":-6.020600,"frequency":4096}): output[0:127] is not constantly 0.
    5252PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":-6.020600,"frequency":4096}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    5353PASS < [lpf-repeated-root] All assertions passed. (total 3 assertions)
    5454PASS > [lpf-real-roots-2] complex roots
    55 PASS   LPF repeated roots 2: Biquad({"type":"lowpass","Q":-100,"frequency":4096}): Actual Tail Frame 256 is greater than or equal to 0.
     55PASS   LPF repeated roots 2: Biquad({"type":"lowpass","Q":-100,"frequency":4096}).
    5656PASS   LPF repeated roots 2: Biquad({"type":"lowpass","Q":-100,"frequency":4096}): output[0:127] is not constantly 0.
    5757PASS   LPF repeated roots 2: Biquad({"type":"lowpass","Q":-100,"frequency":4096}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    5858PASS < [lpf-real-roots-2] All assertions passed. (total 3 assertions)
    5959PASS > [huge tail]
    60 PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":100,"frequency":100}): Actual Tail Frame 90240 is greater than or equal to 90000.
     60PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":100,"frequency":100}).
    6161PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":100,"frequency":100}): output[0:127] is not constantly 0.
    6262PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":100,"frequency":100}): output[128:255] is not constantly 0.
     
    766766PASS < [huge tail] All assertions passed. (total 706 assertions)
    767767PASS > [ginormous tail]
    768 PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":500,"frequency":100}): Actual Tail Frame 750 is greater than or equal to 749.
     768PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":500,"frequency":100}).
    769769PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":500,"frequency":100}): output[0:127] is not constantly 0.
    770770PASS   LPF repeated roots (approximately): Biquad({"type":"lowpass","Q":500,"frequency":100}): output[128:255] is not constantly 0.
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-lowshelf-expected.txt

    r269853 r269972  
    55PASS Audit report
    66PASS > [lowshelf-complex-roots] complex roots
    7 PASS   Lowshelf complex roots: Biquad({"type":"lowshelf","gain":40,"frequency":2048}): Actual Tail Frame 256 is greater than or equal to 76.
     7PASS   Lowshelf complex roots: Biquad({"type":"lowshelf","gain":40,"frequency":2048}).
    88PASS   Lowshelf complex roots: Biquad({"type":"lowshelf","gain":40,"frequency":2048}): output[0:127] is not constantly 0.
    99PASS   Lowshelf complex roots: Biquad({"type":"lowshelf","gain":40,"frequency":2048}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    1010PASS < [lowshelf-complex-roots] All assertions passed. (total 3 assertions)
    1111PASS > [lowshelf-repeated-roots] repeated real root
    12 PASS   Lowshelf repeated roots: Biquad({"type":"lowshelf","Q":0.05,"gain":40,"frequency":0}): Actual Tail Frame 1 is greater than or equal to 1.
    13 PASS   Lowshelf repeated roots: Biquad({"type":"lowshelf","Q":0.05,"gain":40,"frequency":0}): output[0:127] is not constantly 0 (contains 1 different value).
     12PASS   Lowshelf repeated roots: Biquad({"type":"lowshelf","Q":0.05,"gain":40,"frequency":0}).
     13PASS   Lowshelf repeated roots: Biquad({"type":"lowshelf","Q":0.05,"gain":40,"frequency":0}): output[0:127] is not constantly 0.
    1414PASS   Lowshelf repeated roots: Biquad({"type":"lowshelf","Q":0.05,"gain":40,"frequency":0}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    1515PASS < [lowshelf-repeated-roots] All assertions passed. (total 3 assertions)
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-notch-expected.txt

    r269853 r269972  
    66PASS Audit report
    77PASS > [notch-complex-roots] complex roots
    8 PASS   Notch complex roots: Biquad({"type":"notch","Q":200,"frequency":4096}): Actual Tail Frame 2176 is greater than or equal to 2039.
     8PASS   Notch complex roots: Biquad({"type":"notch","Q":200,"frequency":4096}).
    99PASS   Notch complex roots: Biquad({"type":"notch","Q":200,"frequency":4096}): output[0:127] is not constantly 0.
    1010PASS   Notch complex roots: Biquad({"type":"notch","Q":200,"frequency":4096}): output[128:255] is not constantly 0.
     
    2626PASS < [notch-complex-roots] All assertions passed. (total 18 assertions)
    2727PASS > [notch-real-distinct-roots] real distinct roots
    28 PASS   Notch real distinct roots: Biquad({"type":"notch","Q":0.001,"frequency":4096}): Actual Tail Frame 2688 is greater than or equal to 2437.
     28PASS   Notch real distinct roots: Biquad({"type":"notch","Q":0.001,"frequency":4096}).
    2929PASS   Notch real distinct roots: Biquad({"type":"notch","Q":0.001,"frequency":4096}): output[0:127] is not constantly 0.
    3030PASS   Notch real distinct roots: Biquad({"type":"notch","Q":0.001,"frequency":4096}): output[128:255] is not constantly 0.
     
    5050PASS < [notch-real-distinct-roots] All assertions passed. (total 22 assertions)
    5151PASS > [notch-repeated-roots] repeated real root
    52 PASS   Notch repeated roots: Biquad({"type":"notch","Q":0.5,"frequency":4096}): Actual Tail Frame 5 is greater than or equal to 3.
     52PASS   Notch repeated roots: Biquad({"type":"notch","Q":0.5,"frequency":4096}).
    5353PASS   Notch repeated roots: Biquad({"type":"notch","Q":0.5,"frequency":4096}): output[0:127] is not constantly 0.
    5454PASS   Notch repeated roots: Biquad({"type":"notch","Q":0.5,"frequency":4096}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
  • trunk/LayoutTests/webaudio/BiquadFilter/tail-time-peaking-expected.txt

    r269853 r269972  
    77PASS Audit report
    88PASS > [peaking-complex-roots] complex roots
    9 PASS   Peaking complex roots: Biquad({"type":"peaking","Q":10,"gain":40,"frequency":4096}): Actual Tail Frame 2304 is greater than or equal to 2077.
     9PASS   Peaking complex roots: Biquad({"type":"peaking","Q":10,"gain":40,"frequency":4096}).
    1010PASS   Peaking complex roots: Biquad({"type":"peaking","Q":10,"gain":40,"frequency":4096}): output[0:127] is not constantly 0.
    1111PASS   Peaking complex roots: Biquad({"type":"peaking","Q":10,"gain":40,"frequency":4096}): output[128:255] is not constantly 0.
     
    2828PASS < [peaking-complex-roots] All assertions passed. (total 19 assertions)
    2929PASS > [peaking-real-distinct-roots] real distinct roots
    30 PASS   Peaking real distinct roots: Biquad({"type":"peaking","Q":0.001,"gain":40,"frequency":4096}): Actual Tail Frame 768 is greater than or equal to 589.
     30PASS   Peaking real distinct roots: Biquad({"type":"peaking","Q":0.001,"gain":40,"frequency":4096}).
    3131PASS   Peaking real distinct roots: Biquad({"type":"peaking","Q":0.001,"gain":40,"frequency":4096}): output[0:127] is not constantly 0.
    3232PASS   Peaking real distinct roots: Biquad({"type":"peaking","Q":0.001,"gain":40,"frequency":4096}): output[128:255] is not constantly 0.
     
    3737PASS < [peaking-real-distinct-roots] All assertions passed. (total 7 assertions)
    3838PASS > [peaking-repeated-roots] repeated real root
    39 PASS   Peaking repeated roots: Biquad({"type":"peaking","Q":0.5,"gain":0,"frequency":2048}): Actual Tail Frame 64 is greater than or equal to 1.
     39PASS   Peaking repeated roots: Biquad({"type":"peaking","Q":0.5,"gain":0,"frequency":2048}).
    4040PASS   Peaking repeated roots: Biquad({"type":"peaking","Q":0.5,"gain":0,"frequency":2048}): output[0:127] is not constantly 0.
    4141PASS   Peaking repeated roots: Biquad({"type":"peaking","Q":0.5,"gain":0,"frequency":2048}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    4242PASS < [peaking-repeated-roots] All assertions passed. (total 3 assertions)
    4343PASS > [peaking-repeated-roots 2] repeated real root
    44 PASS   Peaking repeated roots 2: Biquad({"type":"peaking","Q":1,"gain":40,"frequency":0}): Actual Tail Frame 1 is greater than or equal to 1.
    45 PASS   Peaking repeated roots 2: Biquad({"type":"peaking","Q":1,"gain":40,"frequency":0}): output[0:127] is not constantly 0 (contains 1 different value).
     44PASS   Peaking repeated roots 2: Biquad({"type":"peaking","Q":1,"gain":40,"frequency":0}).
     45PASS   Peaking repeated roots 2: Biquad({"type":"peaking","Q":1,"gain":40,"frequency":0}): output[0:127] is not constantly 0.
    4646PASS   Peaking repeated roots 2: Biquad({"type":"peaking","Q":1,"gain":40,"frequency":0}): output[384:] equals [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...] with an element-wise tolerance of {"absoluteThreshold":0,"relativeThreshold":0}.
    4747PASS < [peaking-repeated-roots 2] All assertions passed. (total 3 assertions)
Note: See TracChangeset for help on using the changeset viewer.