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

Builder texinfo-solaris11-sparc Build #6584

Results:

Failed shell_3

SourceStamp:

Projecttexinfo
Repositoryhttps://git.savannah.gnu.org/git/texinfo.git
Branchmaster
Revision193501bc18b44b3e761af26c2299ca24332a6788
Got Revision193501bc18b44b3e761af26c2299ca24332a6788
Changes5 changes

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-texinfo-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 4 secs )
    1. stdio
  2. shell './autogen.sh' ( 7 mins, 55 secs )
    1. stdio
  3. shell_1 './configure' ( 1 mins, 16 secs )
    1. stdio
  4. shell_2 'gmake all' ( 2 mins, 57 secs )
    1. stdio
  5. shell_3 'gmake check' failed ( 42 secs )
    1. stdio
    2. tta_tests_test-suite.log
    3. tta_perl_test-suite.log
    4. info_test-suite.log
    5. install_info_test-suite.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/texinfo-solaris11-sparc slave
buildername texinfo-solaris11-sparc Builder
buildnumber 6584 Build
codebase Build
got_revision 193501bc18b44b3e761af26c2299ca24332a6788 Git
project texinfo Build
repository https://git.savannah.gnu.org/git/texinfo.git Build
revision 193501bc18b44b3e761af26c2299ca24332a6788 Build
scheduler schedule-texinfo-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/texinfo-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Patrice Dumas

Timing:

StartTue Jun 3 01:17:46 2025
EndTue Jun 3 01:30:42 2025
Elapsed12 mins, 55 secs

All Changes:

:

  1. Change #231282

    Category texinfo
    Changed by Patrice Dumas <pertususohnoyoudont@free.fr>
    Changed at Tue 03 Jun 2025 01:03:48
    Repository https://git.savannah.gnu.org/git/texinfo.git
    Project texinfo
    Branch master
    Revision 359b73825d2b68f3fd76d07a54c231d77464a3df

    Comments

    Store Texinfo tree element SV in C
    * tta/C/main/api_to_perl.c (get_sv_hv): add.  Useful when a SV is
    stored in C and the HV should be compared to an HV as comparison
    of SV is not reliable.
    
    * tta/C/main/build_perl_info.c (build_perl_array)
    (build_perl_const_element_array, build_perl_container)
    (build_perl_directions, build_additional_info, element_to_perl_hash),
    tta/C/main/tree_types.h (ELEMENT): store SV element in C and not HV.
    Update all the codes using Perl element data.

    Changed files

    • ChangeLog
    • tta/C/convert/build_html_perl_info.c
    • tta/C/convert/build_html_perl_state.c
    • tta/C/convert/call_html_perl_function.c
    • tta/C/convert/convert_html.c
    • tta/C/convert/format_html.c
    • tta/C/convert/html_conversion_state.c
    • tta/C/main/api_to_perl.c
    • tta/C/main/api_to_perl.h
    • tta/C/main/build_perl_info.c
    • tta/C/main/build_perl_info.h
    • tta/C/main/converter_types.h
    • tta/C/main/get_perl_info.c
    • tta/C/main/replace_perl_api_call.c
    • tta/C/main/tree.c
    • tta/C/main/tree_types.h
    • tta/perl/XSTexinfo/convert/ConvertXS.xs
    • tta/perl/XSTexinfo/convert/get_html_perl_info.c
    • tta/perl/XSTexinfo/parser_document/DocumentXS.xs
    • tta/perl/XSTexinfo/parser_document/StructuringTransfoXS.xs
  2. Change #231284

    Category texinfo
    Changed by Patrice Dumas <pertususohnoyoudont@free.fr>
    Changed at Tue 03 Jun 2025 01:03:48
    Repository https://git.savannah.gnu.org/git/texinfo.git
    Project texinfo
    Branch master
    Revision 3c285ecff120b1063297f88f1caa70c2a9ca4a9f

    Comments

    * tta/C/main/build_perl_info.c (new_element_perl_data): add a function to setup an empty Perl sv in a C element.
    * tta/C/main/build_perl_info.c (build_perl_array)
    (build_perl_const_element_array, build_perl_container)
    (build_perl_directions, build_additional_info, element_to_perl_hash):
    use new_element_perl_data.

    Changed files

    • ChangeLog
    • tta/C/main/build_perl_info.c
  3. Change #231285

    Category texinfo
    Changed by Patrice Dumas <pertususohnoyoudont@free.fr>
    Changed at Tue 03 Jun 2025 01:03:48
    Repository https://git.savannah.gnu.org/git/texinfo.git
    Project texinfo
    Branch master
    Revision 1735a09fb654be7390e495ffc19c220af99acd48

    Comments

    * tta/perl/Texinfo/Common.pm (debug_print_element), tta/perl/Texinfo/Convert/Texinfo.pm (_convert_to_texinfo): add messages if an element is not blessed into Texinfo::TreeElement now that both Perl and C generated tree element should be.

    Changed files

    • ChangeLog
    • tta/perl/Texinfo/Common.pm
    • tta/perl/Texinfo/Convert/Texinfo.pm
  4. Change #231286

    Category texinfo
    Changed by Patrice Dumas <pertususohnoyoudont@free.fr>
    Changed at Tue 03 Jun 2025 01:03:48
    Repository https://git.savannah.gnu.org/git/texinfo.git
    Project texinfo
    Branch master
    Revision 13328e9faa22384f2a1cfa689957fca3ef0daf2e

    Comments

    Preliminary Texinfo Tree Reader API for Perl
    * tta/perl/Makefile.am (dist_modules_DATA),
    tta/perl/Texinfo/Reader.pm: preliminary Texinfo tree Reader API
    similar to Pod::Simple::PullParser or XML::LibXML::Reader.
    
    * tta/perl/Makefile.am (dist_convertmodules_DATA),
    tta/perl/perl/Texinfo/Convert/TestReader.pm, tta/perl/texi2any.pl
    (%formats_table): add a converter that can only test Texinfo::Reader.

    Changed files

    • ChangeLog
    • tta/perl/Makefile.am
    • tta/perl/Texinfo/Convert/TestReader.pm
    • tta/perl/Texinfo/Reader.pm
    • tta/perl/texi2any.pl
  5. Change #231287

    Category texinfo
    Changed by Patrice Dumas <pertususohnoyoudont@free.fr>
    Changed at Tue 03 Jun 2025 01:10:09
    Repository https://git.savannah.gnu.org/git/texinfo.git
    Project texinfo
    Branch master
    Revision 193501bc18b44b3e761af26c2299ca24332a6788

    Comments

    Reorder ChangeLog

    Changed files

    • ChangeLog