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

Builder wget-solaris10-sparc Build #535

Results:

Failed shell shell_1 shell_2 shell_3

SourceStamp:

Projectwget
Repositoryhttps://gitlab.com/gnuwget/wget.git
Branchmaster
Revision196ce0abd67b9c905c600a217a7d2dd667216081
Got Revision196ce0abd67b9c905c600a217a7d2dd667216081
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 23 secs )
    1. stdio
  2. shell 'bash bootstrap' failed ( 20 secs )
    1. stdio
  3. shell_1 './configure' failed ( 0 secs )
    1. stdio
    2. src/config.h
    3. config.log
  4. shell_2 'gmake' failed ( 0 secs )
    1. stdio
  5. shell_3 'gmake check' failed ( 0 secs )
    1. stdio
    2. tests-unit-tests.log
    3. tests-test-suite.log
    4. testenv-test-suite.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/wget-solaris10-sparc slave
buildername wget-solaris10-sparc Builder
buildnumber 535 Build
codebase Build
got_revision 196ce0abd67b9c905c600a217a7d2dd667216081 Git
project wget Build
repository https://gitlab.com/gnuwget/wget.git Build
revision 196ce0abd67b9c905c600a217a7d2dd667216081 Build
scheduler schedule-wget-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/wget-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Darshit Shah

Timing:

StartSun May 12 18:02:44 2024
EndSun May 12 18:03:29 2024
Elapsed44 secs

All Changes:

:

  1. Change #196946

    Category wget
    Changed by Darshit Shah <darnirohnoyoudont@gnu.org>
    Changed at Sun 12 May 2024 17:57:30
    Repository https://gitlab.com/gnuwget/wget.git
    Project wget
    Branch master
    Revision 196ce0abd67b9c905c600a217a7d2dd667216081

    Comments

    Support continious reading from stdin pipes
    Rather than reading from stdin only once, leave the pipe open until the
    other end closes it and keep reading from the file after each set of
    URLs is read
    
    * src/html-url.h(get_urls_file): Update prototype to add additional
      param
    * src/html-url.c(get_urls_file): Pass through read_again to
      wget_read_from_file.
    * src/retr.c(retrieve_from_file): Split the function into two. Introduce
      `retrieve_from_url_list` that actually performs the retrieval.
      Also, if `url_list` returns that the fd has been left open, then
      continue reading from it until the fd is closed.
      (retrieve_from_url_list): New function that does the retrieval from
      a list of URLs that was read from a file.
    * src/utils.c(wget_read_from_file): Rename old function `wget_read_file`
      to this.
      Accept an additional output parameter that states whether the fd was
      left open and if we should continue reading from it after the current
      set of URLs have been processed
      (wget_read_file): Write it as a new wrapper function around
      `wget_read_from_file` to maintain API comptability across other users

    Changed files

    • src/html-url.c
    • src/html-url.h
    • src/retr.c
    • src/utils.c
    • src/utils.h