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

Builder tcpdump-solaris10-i386 Build #5484

Results:

Build successful

SourceStamp:

Projecttcpdump
Repositoryhttps://git.tcpdump.org/tcpdump
Branchmaster
Revisionad5e31b10c83431845292be5ca4bfa0f284840fd
Got Revisionad5e31b10c83431845292be5ca4bfa0f284840fd
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 4 secs )
    1. stdio
  4. shell_2 configure ( 54 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 3 mins, 5 secs )
    1. stdio
  6. shell_4 'gmake check' ( 2 mins, 9 secs )
    1. stdio
    2. failure-outputs.txt

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/tcpdump-solaris10-i386 slave
buildername tcpdump-solaris10-i386 Builder
buildnumber 5484 Build
codebase Build
got_revision ad5e31b10c83431845292be5ca4bfa0f284840fd Git
project tcpdump Build
repository https://git.tcpdump.org/tcpdump Build
revision ad5e31b10c83431845292be5ca4bfa0f284840fd Build
scheduler schedule-tcpdump-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/tcpdump-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Francois-Xavier Le Bail

Timing:

StartSat Sep 28 16:08:30 2024
EndSat Sep 28 16:14:49 2024
Elapsed6 mins, 18 secs

All Changes:

:

  1. Change #209123

    Category tcpdump
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Sat 28 Sep 2024 16:01:32
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision ad5e31b10c83431845292be5ca4bfa0f284840fd

    Comments

    Fix '-tt' option printing when time > 2106-02-07T06:28:15Z
    Currently the printing with '-tt' option (unix time) is incorrect.
    
    Some examples:
    1) test: time_2106_overflow-tt
    0.000000 IP 192.168.1.11.43966 > 209.87.249.18.53: UDP, length 56
    Should be:
    4294967296.000000 IP 192.168.1.11.43966 > 209.87.249.18.53: UDP, length 56
    2) test: time_2107-tt
    28315904.000000 IP 192.168.1.11.43966 > 209.87.249.18.53: UDP, length 56
    Should be:
    4323283200.000000 IP 192.168.1.11.43966 > 209.87.249.18.53: UDP, length 56
    
    Two build examples:
    64-bit build: tv->tv_sec has type '__time_t' (aka 'long').
    32-bit build with _TIME_BITS=64: tv->tv_sec has type '__time64_t'
      (aka 'long long').
    
    Using 'unsigned' cast is incorrect for these 64-bit data.
    
    Thus convert to 'int64_t' and print with '"%" PRId64'.
    
    Add two test cases (existing pcapng printed with -tt).

    Changed files

    • tests/time.tests
    • tests/time_2106_overflow-tt.out
    • tests/time_2107-tt.out
    • util-print.c