Builder wget-solaris10-i386 Build #433
Results:
Failed shell_2 shell_3
SourceStamp:
Project | wget |
Repository | https://gitlab.com/gnuwget/wget.git |
Branch | master |
Revision | 37f0dca4e22049d824919f0311092f56a1874302 |
Got Revision | 37f0dca4e22049d824919f0311092f56a1874302 |
Changes | 2 changes |
BuildSlave:
unstable10xReason:
The SingleBranchScheduler scheduler named 'schedule-wget-solaris10-i386' triggered this build
Steps and Logfiles:
Build Properties:
Name | Value | Source |
---|---|---|
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:
Name | Label | Value |
---|
Responsible Users:
- Darshit Shahdarnir@gnu.org
- Steven M. Schwedasms@antinode.info
Timing:
Start | Wed Dec 30 23:20:00 2020 |
End | Wed Dec 30 23:24:53 2020 |
Elapsed | 4 mins, 53 secs |
All Changes:
:
Change #120393
Category wget Changed by Steven M. Schweda <sms @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
Change #120394
Category wget Changed by Darshit Shah <darnir @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