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

Builder ffmpeg64-solaris10-i386 Build #11234

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 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 ( 1 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 ( 1 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 11234 Build
codebase Build
got_revision 8d92f59d117a19e910574c0fe3c67e71dfe11b72 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8d92f59d117a19e910574c0fe3c67e71dfe11b72 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. Marton Balint

Timing:

StartTue May 7 23:53:01 2024
EndTue May 7 23:53:09 2024
Elapsed7 secs

All Changes:

:

  1. Change #196597

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 07 May 2024 23:38:05
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8d92f59d117a19e910574c0fe3c67e71dfe11b72

    Comments

    avformat/file: fail for non-numerical arguments to pipe:
    Before this patch, the implementation of pipe: inputs/outputs would
    silently fall back to stdin/stdout for any argument not successfully
    parsed by strtol().
    
    This patch introduces an explicit error for any non-numerical arguments,
    which should avoid user confusion as in #10977.
    
    New behavior:
    
    $ cat /tmp/video.mkv | ./ffmpeg -i pipe:aa -acodec copy -vcodec copy -f matroska pipe:1 | cat >/tmp/out.mkv
    
    [pipe @ 0x5618c7bcf740] Non-numerical argument "aa" to pipe:
    [in#0 @ 0x5618c7bced00] Error opening input: Invalid argument
    Error opening input file pipe:aa.
    Error opening input files: Invalid argument
    
    Based on the patch of Nils Goroll <nils.goroll@uplex.de>.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/file.c