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

Builder gtar-solaris10-sparc Build #264

Results:

Failed shell shell_1 shell_2 shell_3

SourceStamp:

Projectgtar
Repositorygit://git.savannah.gnu.org/tar.git
Branchmaster
Revisiona6cf78b0fa43e7c7ec27275e6ee2d3383f7f922a
Got Revisiona6cf78b0fa43e7c7ec27275e6ee2d3383f7f922a
Changes6 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-gtar-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell '/opt/csw/bin/bash bootstrap' failed ( 52 secs )
    1. stdio
  3. shell_1 './configure' failed ( 0 secs )
    1. stdio
  4. shell_2 'gmake' failed ( 0 secs )
    1. stdio
  5. shell_3 'gmake check' failed ( 0 secs )
    1. stdio
    2. testsuite.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/gtar-solaris10-sparc slave
buildername gtar-solaris10-sparc Builder
buildnumber 264 Build
codebase Build
got_revision a6cf78b0fa43e7c7ec27275e6ee2d3383f7f922a Git
project gtar Build
repository git://git.savannah.gnu.org/tar.git Build
revision a6cf78b0fa43e7c7ec27275e6ee2d3383f7f922a Build
scheduler schedule-gtar-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/gtar-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Paul Eggert

Timing:

StartSat Nov 2 21:48:44 2024
EndSat Nov 2 21:49:45 2024
Elapsed1 mins, 0 secs

All Changes:

:

  1. Change #213342

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 15d35a0f61a516bdf946158daa8a6990a2191ce1

    Comments

    Count short read slop when seeking
    * src/buffer.c (short_read_slop): New static var.
    (get_archive_status): Treat anything other than fifos and sockets
    as potentially seekable; they’ll tell us if they aren’t, whereas
    fifos and sockets cannot be seekable.  Check named files for
    initial offset too, to deal with names like /dev/stdin.
    Do not worry about start_offset’s value if !seekable_archive,
    as it won’t be used.  Use short_read_slop.
    (short_read, try_new_volume, simple_flush_read, _gnu_flush_read):
    Set short_read_slop.

    Changed files

    • src/buffer.c
  2. Change #213343

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 005f2916b6e5149e16d0ae16beea8c94e28e465f

    Comments

    Improve common.h comment

    Changed files

    • src/common.h
  3. Change #213344

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 5c47fcf1878efa1787d0ef88905e754f00668d11

    Comments

    Avoid malloc in change_tape_menu
    * src/buffer.c (change_tape_menu): Avoid unnecessary xstrdup.

    Changed files

    • src/buffer.c
  4. Change #213345

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision c500103600d64fcfd533a0f43cd47178d56bb2c9

    Comments

    Simplify read_incr_db_01 malloc
    * src/incremen.c (read_incr_db_01): Replace arg initbuf with two
    args pbuf and pbufsize so that we can simplify memory allocation.
    Caller changed.  Omit now-unnecessary free, xstrdup, strlen.

    Changed files

    • src/incremen.c
  5. Change #213346

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 568919d77b346bfc833d476761204f3325868c0a

    Comments

    Improve sparse I/O performance
    * src/sparse.c (sparse_dump_region, sparse_extract_region):
    Don’t insist on reading and writing sparse files 512
    bytes at a time.  This resulted in a 4× to 6× performance
    improvement on my platform.

    Changed files

    • NEWS
    • src/sparse.c
  6. Change #213347

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sat 02 Nov 2024 21:43:05
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision a6cf78b0fa43e7c7ec27275e6ee2d3383f7f922a

    Comments

    Add LG_BLOCKSIZE to omit some *, % ops
    * src/buffer.c (_flush_write, short_read, seek_archive)
    (_gnu_flush_write):
    * src/create.c (write_gnu_long_link, dump_regular_file)
    (dump_dir0):
    * src/delete.c (write_recent_bytes, flush_file)
    (delete_archive_members):
    * src/list.c (read_header):
    * src/sparse.c (sparse_dump_region, sparse_extract_region)
    (pax_dump_header_1):
    * src/tar.c (parse_opt):
    * src/update.c (append_file):
    Prefer shifting and masking to dividing and remaindering by
    BLOCKSIZE.  This reclaims some compiler optimizations lost
    by our recent preference for signed integers.
    * src/tar.h (LG_BLOCKSIZE): New constant, for shifting.

    Changed files

    • src/buffer.c
    • src/create.c
    • src/delete.c
    • src/list.c
    • src/sparse.c
    • src/tar.c
    • src/tar.h
    • src/update.c