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

Builder gtar-solaris10-i386 Build #214

Results:

Failed shell shell_1 shell_2 shell_3

SourceStamp:

Projectgtar
Repositorygit://git.savannah.gnu.org/tar.git
Branchmaster
Revisiond6a60bba7637e283ae8b0859404f37b291dc5faa
Got Revisiond6a60bba7637e283ae8b0859404f37b291dc5faa
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. shell '/opt/csw/bin/bash bootstrap' failed ( 6 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/slave/gtar-solaris10-i386 slave
buildername gtar-solaris10-i386 Builder
buildnumber 214 Build
codebase Build
got_revision d6a60bba7637e283ae8b0859404f37b291dc5faa Git
project gtar Build
repository git://git.savannah.gnu.org/tar.git Build
revision d6a60bba7637e283ae8b0859404f37b291dc5faa Build
scheduler schedule-gtar-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/gtar-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Paul Eggert

Timing:

StartSun Jun 25 23:34:41 2023
EndSun Jun 25 23:34:50 2023
Elapsed8 secs

All Changes:

:

  1. Change #175572

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sun 25 Jun 2023 23:28:36
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 90cceec4bb58e5ce2a2045a7062cd3fee4b322d9

    Comments

    tar: omit unnecessary freeing
    * src/tar.c (main): Omit unnecessary freeing.

    Changed files

    • src/tar.c
  2. Change #175573

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sun 25 Jun 2023 23:28:36
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision fdff045d4b4fa3d071071a8add96a347c85c59a9

    Comments

    * po/.gitignore: Omit redundant *~ entries.

    Changed files

    • po/.gitignore
  3. Change #175574

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sun 25 Jun 2023 23:28:36
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision 2ccd643d01315f51fe172454bf716e3fa4952762

    Comments

    tar: make safe for -Wunused-parameter
    This also ports to C23 [[maybe_unused]].
    * configure.ac (WARN_CFLAGS): Do not add -Wno-unused-parameter.
    Add MAYBE_UNUSED where needed in source code.
    Also, put it at the front where C23 requires it.

    Changed files

    • configure.ac
    • src/buffer.c
    • src/common.h
    • src/compare.c
    • src/create.c
    • src/exclist.c
    • src/extract.c
    • src/list.c
    • src/names.c
    • src/sparse.c
    • src/tar.c
    • src/xattrs.c
    • src/xattrs.h
    • src/xheader.c
  4. Change #175575

    Category gtar
    Changed by Paul Eggert <eggertohnoyoudont@cs.ucla.edu>
    Changed at Sun 25 Jun 2023 23:28:36
    Repository git://git.savannah.gnu.org/tar.git
    Project gtar
    Branch master
    Revision d6a60bba7637e283ae8b0859404f37b291dc5faa

    Comments

    tar: extract delayed links in order
    Extract delayed links in tar file order, rather than
    in hash table order with modifications.
    This is simpler and more likely to use the kernel’s
    cached filesystem data, assuming related delayed links
    are nearby in the tar file.
    * src/extract.c (struct delayed_link.has_predecessor):
    Remove.  All uses removed.
    (delayed_link_head, delayed_link_tail): New static vars.
    This resurrects delayed_link_head’s old function
    except that the linked list is now in forward order, not reverse.
    (find_delayed_link_source): Now simply returns bool,
    since the callers no longer need the pointer.
    (create_placeholder_file):
    Put the delayed link at the end of the linked list.
    Omit no-longer-needed last arg.  All callers changed.
    (apply_delayed_links): Simplify now that we can just iterate
    through the delayed_link_head list.

    Changed files

    • src/extract.c