Ticket #1856: tt1856-version.patch

File tt1856-version.patch, 1.9 KB (added by doughera, 11 years ago)
  • include/parrot/oplib/core_ops.h

    diff -r -u parrot-2.10.1/include/parrot/oplib/core_ops.h parrot-fixed/include/parrot/oplib/core_ops.h
    old new  
    1919#include "parrot/runcore_api.h" 
    2020 
    2121PARROT_EXPORT 
    22 op_lib_t *Parrot_DynOp_core_2_10_0(PARROT_INTERP, long init); 
     22op_lib_t *Parrot_DynOp_core_2_10_1(PARROT_INTERP, long init); 
    2323 
    2424 opcode_t * Parrot_end(opcode_t *, PARROT_INTERP); 
    2525 opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP); 
  • src/ops/core_ops.c

    diff -r -u parrot-2.10.1/src/ops/core_ops.c parrot-fixed/src/ops/core_ops.c
    old new  
    2599825998    hop_buckets = NULL; 
    2599925999}PARROT_EXPORT 
    2600026000op_lib_t * 
    26001 Parrot_DynOp_core_2_10_0(PARROT_INTERP, long init) { 
     26001Parrot_DynOp_core_2_10_1(PARROT_INTERP, long init) { 
    2600226002    /* initialize and return op_lib ptr */ 
    2600326003    if (init == 1) { 
    2600426004 
     
    2602726027 
    2602826028{ 
    2602926029    PMC *const lib = Parrot_pmc_new(interp, enum_class_ParrotLibrary); 
    26030     ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_10_0; 
     26030    ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_10_1; 
    2603126031    dynop_register(interp, lib); 
    2603226032    return lib; 
    2603326033} 
  • t/steps/auto/git_describe-01.t

    diff -r -u parrot-2.10.1/t/steps/auto/git_describe-01.t parrot-fixed/t/steps/auto/git_describe-01.t
    old new  
    7575 
    7676{ 
    7777    no warnings 'once'; 
    78     my $cur = 'RELEASE_2_10_0'; 
     78    my $cur = 'RELEASE_2_10_1'; 
    7979    local $Parrot::Git::Describe::current = $cur; 
    8080    my $ret = $step->runstep($conf); 
    8181    ok( $ret, "runstep() returned true value" );