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

Builder ffmpeg64-solaris10-i386 Build #13975

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision3d1d546f7055a16efd3686cb8a8426c7aef20c48
Got Revision3d1d546f7055a16efd3686cb8a8426c7aef20c48
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 8 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 13975 Build
codebase Build
got_revision 3d1d546f7055a16efd3686cb8a8426c7aef20c48 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3d1d546f7055a16efd3686cb8a8426c7aef20c48 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. Bogdan Lisman

Timing:

StartMon Jun 15 21:19:22 2026
EndMon Jun 15 21:19:38 2026
Elapsed15 secs

All Changes:

:

  1. Change #271209

    Category ffmpeg
    Changed by Bogdan Lisman <bogdanohnoyoudont@pydevsolutions.com>
    Changed at Mon 15 Jun 2026 21:11:59
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3d1d546f7055a16efd3686cb8a8426c7aef20c48

    Comments

    avutil/eval: apply unary sign to print, squish, gauss and lerp
    The leading sign of a (sub)expression is stored as +-1 in each node's
    value field (parse_factor) and every other function multiplies its
    result by it. print, squish, gauss and lerp ignored it, so e.g.
    -print(1) evaluated to 1 instead of -1 and -gauss(0) to 0.398942
    instead of -0.398942, while -1*print(1) was correct.
    
    Fixes: ticket #9833
    Reported-by: Player701
    Signed-off-by: Bogdan Lisman <bogdan@pydevsolutions.com>

    Changed files

    • libavutil/eval.c
    • libavutil/tests/eval.c
    • tests/ref/fate/eval