Subject: | Possible hash randomization problems in test suite |
I see fail reports like this one --- it seems that the attribute ordering is different here, an indication for a hash randomization problem.
# Failed test 'name and date templated correctly'
# at t/content_handler.t line 22.
# got: '<html>
# <head>
# <title>Hello World</title>
# </head>
# <body>
# <h1>Hello World</h1>
# <p>Hello, my name is <span id="name" klass="content">terrence
# brannon</span>. </p>
# <p>Today's date is <span klass="content" id="date">5/11/1969</span>. </p>
# </body>
# </html>
# '
# expected: '<html>
# <head>
# <title>Hello World</title>
# </head>
# <body>
# <h1>Hello World</h1>
# <p>Hello, my name is <span id="name" klass="content">terrence
# brannon</span>. </p>
# <p>Today's date is <span id="date" klass="content">5/11/1969</span>. </p>
# </body>
# </html>
# '
# Looks like you failed 1 test of 1.
t/content_handler.t ..
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests