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

Builder ffmpeg-solaris10-sparc Build #12495

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionef9fe0fe0bba7ecff3ed07fd53146296c1831a8f
Got Revisionef9fe0fe0bba7ecff3ed07fd53146296c1831a8f
Changes2 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 7 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.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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12495 Build
codebase Build
got_revision ef9fe0fe0bba7ecff3ed07fd53146296c1831a8f Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision ef9fe0fe0bba7ecff3ed07fd53146296c1831a8f Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Leo Izen

Timing:

StartSun Aug 24 22:32:22 2025
EndSun Aug 24 22:32:37 2025
Elapsed15 secs

All Changes:

:

  1. Change #243843

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Sun 24 Aug 2025 22:20:10
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2398fddf6ed5d9ba81a4fa6b7afb895ca6cee144

    Comments

    avcodec/exif: avoid writing native-endian EXIF buffers
    Currently there's platform-dependent behavior where if no endianness
    is requested, it writes the buffers in native-endian. This breaks FATE
    tests on big-endian architecture. This commit changes the default to
    little-endian buffers upon writing.
    
    Fixes: #20291.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  2. Change #243844

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Sun 24 Aug 2025 22:20:10
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ef9fe0fe0bba7ecff3ed07fd53146296c1831a8f

    Comments

    avcodec/exif: avoid allocation failure on empty EXIF metadata
    An EXIF IFD with 0 entries is legal, but does not contain metadata. We
    should not attempt to allocate a struct with size zero in this case, as
    this causes an allocation failure. Instead, we just leave the struct
    empty.
    
    Fixes: #20305.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c