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

Builder wget-solaris10-i386 Build #433

Results:

Failed shell_2 shell_3

SourceStamp:

Projectwget
Repositoryhttps://gitlab.com/gnuwget/wget.git
Branchmaster
Revision37f0dca4e22049d824919f0311092f56a1874302
Got Revision37f0dca4e22049d824919f0311092f56a1874302
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 1 secs )
    1. stdio
  2. shell 'bash bootstrap' ( 3 mins, 1 secs )
    1. stdio
  3. shell_1 './configure' ( 54 secs )
    1. stdio
    2. src/config.h
    3. config.log
  4. shell_2 'gmake' failed ( 41 secs )
    1. stdio
  5. shell_3 'gmake check' failed ( 12 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/slave/wget-solaris10-i386 slave
buildername wget-solaris10-i386 Builder
buildnumber 433 Build
codebase Build
got_revision 37f0dca4e22049d824919f0311092f56a1874302 Git
project wget Build
repository https://gitlab.com/gnuwget/wget.git Build
revision 37f0dca4e22049d824919f0311092f56a1874302 Build
scheduler schedule-wget-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/wget-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Darshit Shah
  2. Steven M. Schweda

Timing:

StartWed Dec 30 23:20:00 2020
EndWed Dec 30 23:24:53 2020
Elapsed4 mins, 53 secs

All Changes:

:

  1. Change #120393

    Category wget
    Changed by Steven M. Schweda <smsohnoyoudont@antinode.info>
    Changed at Wed 30 Dec 2020 22:50:32
    Repository https://gitlab.com/gnuwget/wget.git
    Project wget
    Branch master
    Revision 8af2171a34cd62ff55c5a80f679de6bfede278ea

    Comments

    Fixes for running on VMS
    time_t on VMS is typically unsigned.  (Lazy man's solution to 2038?)
    I added "(time_t)" type casts to negative values ("-1"), and changed
    tests to avoid complaints.
    
    * src/hsts.c (hsts_add_entry): Explicitly cast potentially negative time
      values to time_t to handle VMS quirks.
      (hsts_store_entry): Same
      (get_hsts_store_filename): Use new ajoin_dir_file function to join
      filenames
      (test_hsts_read_database): Same
    * src/init.c (struct options): use-askpass is not implemented on VMS
      (ajoin_dir_file): New Function to join filenames in a platform
      agnostic manner
      (wgetrc_user_file_name): Use ajoin_dir_file to join paths. Doing this
      correctly, eliminates the need for a special case on VMS
    * src/init.h: Add prototype for ajoin_dir_file
    * src/log.c (check_redirect_output): Ignore on VMS
    * src/main.c(option_data): Disable use-askpass on VMS
      (print_help): Same
      (get_hsts_database): Use ajoin_dir_file to join paths
      (print_version): Add VMS specific information to Version output
    * src/utils.c (fork_to_background): Fix signature on VMS
    
    Co-authored-by: Darshit Shah <darnir@gnu.org>

    Changed files

    • src/hsts.c
    • src/init.c
    • src/init.h
    • src/log.c
    • src/main.c
    • src/utils.c
  2. Change #120394

    Category wget
    Changed by Darshit Shah <darnirohnoyoudont@gnu.org>
    Changed at Wed 30 Dec 2020 23:04:13
    Repository https://gitlab.com/gnuwget/wget.git
    Project wget
    Branch master
    Revision 37f0dca4e22049d824919f0311092f56a1874302

    Comments

    * src/main.c: Disable use-askpass on VMS

    Changed files

    • src/main.c