Changes between Initial Version and Version 1 of Ticket #1383

Show
Ignore:
Timestamp:
12/20/09 21:37:19 (12 years ago)
Author:
coke
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1383 – description

    initial v1  
    1 The attached patch adds --hash-seed to parrot's cli options.  When set to a valid hex value, interp->hash_seed will contain that value instead of a sorta-random value based on the current time.  The value of this is to speed debugging of failures that appear to be related to hash ordering.  Coke found such a bug in partcl recently [1]. 
     1The attached patch adds --hash-seed to parrot's cli options.  When set to a valid hex value, interp->hash_seed will contain that value instead of a sorta-random value based on the current time.  The value of this is to speed debugging of failures that appear to be related to hash ordering.  Coke found such a bug in partcl recently. 
    22 
    33The patch is pretty simple, but I thought I'd put this out there before committing in the likely case that I've missed something.