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

Builder ffmpeg64-solaris10-i386 Build #12051

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione5d62e20c8d84207f7bc63009751572285a16127
Got Revisione5d62e20c8d84207f7bc63009751572285a16127
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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_64.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/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 12051 Build
codebase Build
got_revision e5d62e20c8d84207f7bc63009751572285a16127 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e5d62e20c8d84207f7bc63009751572285a16127 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartFri Mar 21 04:48:11 2025
EndFri Mar 21 04:48:27 2025
Elapsed16 secs

All Changes:

:

  1. Change #225500

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 21 Mar 2025 04:30:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dff498fddfaee28c825af324d4444aa2ec8ce6a9

    Comments

    avutil/csp: Improve enum range comparisons
    The underlying integer type of an enumeration is
    implementation-defined (see C11, 6.7.2.2 (4)); GCC defaults
    to unsigned if there are no negative values like for all enums
    from pixfmt.h except enum AVPixelFormat.
    
    This means that tests like "if (csp >= AVCOL_SPC_NB)" for
    invalid colorspaces need not work as expected (namely if
    enum AVColorSpace is signed). It also means that testing
    for such an enum variable to be >= 0 may be tautologically
    true. Clang emits a -Wtautological-unsigned-enum-zero-compare
    warning for this.
    
    Fix both of these issues by casting to unsigned.
    Also do the same in libswscale/format.c.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavutil/csp.c
    • libswscale/format.c
  2. Change #225501

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 21 Mar 2025 04:30:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 65154ba99442134a2f732f2213699fc38dc6727a

    Comments

    swscale/tests/swscale: Fix potential buffer overflow
    The field width in a %s directive gives the amount of characters
    to read from the input and not the size of the receiving buffer;
    the latter must be of course also have space for the trailing \0
    which has been forgotten here. The commit adds it (and fixes a
    -Wfortify-source warning from Clang).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libswscale/tests/swscale.c
  3. Change #225502

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 21 Mar 2025 04:30:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 94fd222235a97766bd948375a08b176d955ed5a3

    Comments

    avcodec/mathtables: Fix inaccurate macro name
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mathtables.c
  4. Change #225503

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 21 Mar 2025 04:30:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e5d62e20c8d84207f7bc63009751572285a16127

    Comments

    avdevice/sdl2: Suppress macro redefinition warning
    SDL2's headers #define HAVE_PTHREAD_SETNAME_NP (to one here);
    we also have a config define which leads the compiler to
    warn about this when the values are distinct (as they are here).
    Suppress this warning by including config.h before SDL.h.
    The latter will then redefine our define which doesn't matter
    and which does not lead to warnings because compilers don't warn
    about system headers by default (depending upon -Wsystem-headers).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavdevice/sdl2.c