Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder ffmpegsos-solaris10-i386 Build #13676

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione18c8c533ded73662087ee50080d5c5a6033dccb
Got Revisione18c8c533ded73662087ee50080d5c5a6033dccb
Changes3 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 6 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13676 Build
codebase Build
got_revision e18c8c533ded73662087ee50080d5c5a6033dccb Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e18c8c533ded73662087ee50080d5c5a6033dccb Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. marcos ashton

Timing:

StartSun Apr 5 02:14:48 2026
EndSun Apr 5 02:15:01 2026
Elapsed12 secs

All Changes:

:

  1. Change #263541

    Category ffmpeg
    Changed by marcos ashton <marcosashiglesiasohnoyoudont@gmail.com>
    Changed at Sun 05 Apr 2026 02:12:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 117897bcd0a7476a234a244234c2971ce0aac7fd

    Comments

    tests/fate/libavutil: add FATE test for rc4
    Test the three public API functions: av_rc4_alloc, av_rc4_init,
    and av_rc4_crypt. Verifies keystream output against RFC 6229
    test vectors for 40, 56, 64, and 128-bit keys, encrypt/decrypt
    round-trip, inplace operation, and the invalid key_bits error path.
    
    Coverage for libavutil/rc4.c: 0.00% -> 100.00%

    Changed files

    • libavutil/Makefile
    • libavutil/tests/rc4.c
    • tests/fate/libavutil.mak
    • tests/ref/fate/rc4
  2. Change #263542

    Category ffmpeg
    Changed by marcos ashton <marcosashiglesiasohnoyoudont@gmail.com>
    Changed at Sun 05 Apr 2026 02:12:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 66b1dbfb988b0f13525f14e094cf560a8b1dfdf6

    Comments

    tests/fate/libavutil: add FATE test for samplefmt
    Test all public API functions: name/format round-trip lookups,
    bytes_per_sample, is_planar, packed/planar conversions,
    alt_sample_fmt, get_sample_fmt_string, samples_get_buffer_size,
    samples_alloc, samples_alloc_array_and_samples, samples_copy,
    and samples_set_silence. OOM error paths are exercised via
    av_max_alloc().
    
    Coverage for libavutil/samplefmt.c: 0.00% -> 95.28%
    
    Remaining uncovered lines are the fill_arrays failure path
    and the overlapping memmove branch in samples_copy.

    Changed files

    • libavutil/Makefile
    • libavutil/tests/samplefmt.c
    • tests/fate/libavutil.mak
    • tests/ref/fate/samplefmt
  3. Change #263543

    Category ffmpeg
    Changed by marcos ashton <marcosashiglesiasohnoyoudont@gmail.com>
    Changed at Sun 05 Apr 2026 02:12:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e18c8c533ded73662087ee50080d5c5a6033dccb

    Comments

    tests/fate/libavutil: add FATE test for mathematics
    Test the integer math utility functions: av_gcd, av_rescale,
    av_rescale_rnd (all rounding modes including PASS_MINMAX),
    av_rescale_q, av_compare_ts, av_compare_mod, av_rescale_delta,
    and av_add_stable. Includes large-value tests that exercise the
    128-bit multiply path in av_rescale_rnd.
    
    av_bessel_i0 is not tested since it uses floating point math
    that is not bitexact across platforms.
    
    Coverage for libavutil/mathematics.c: 0.00% -> 82.03%
    
    Remaining uncovered lines are av_bessel_i0 (float, 23 lines)
    and one edge case fallback in av_rescale_delta.

    Changed files

    • libavutil/Makefile
    • libavutil/tests/mathematics.c
    • tests/fate/libavutil.mak
    • tests/ref/fate/mathematics