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

Builder ffmpegsos-solaris10-i386 Build #14271

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionaa63c63b85a6411b8351726abe9f5b612e96ef46
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 10 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14271 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision aa63c63b85a6411b8351726abe9f5b612e96ef46 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. Martin Storsjö

Timing:

StartTue Sep 15 10:43:05 2026
EndTue Sep 15 10:43:15 2026
Elapsed10 secs

All Changes:

:

  1. Change #281867

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Tue 15 Sep 2026 12:10:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision aa63c63b85a6411b8351726abe9f5b612e96ef46

    Comments

    checkasm: aarch64: Test PMULL and CRC separately
    We have three different SIMD implementations of crc_32_IEEE_LE;
    one that uses CRC, one that uses PMULL+EOR3, and one that uses
    PMULL+EOR3+CRC.
    
    When we normally add more CPU flags progressively, we'd first
    test the CRC version, then the PMULL+EOR3+CRC version, but the
    PMULL+EOR3 version would end up untested, unless the machine
    lacks the CRC feature.
    
    Use the new checkasm cpu flag masking feature, added in
    ffmpeg's checkasm in b59a4375acf0176efaf0152117e87c15d1e2aa90,
    to allow testing these features separately.
    
    In addition to making sure we actually test all codepaths,
    this also makes it easier to benchmark all three variants.

    Changed files

    • tests/checkasm/checkasm.c