mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
Add some script tests related to BOOL ops and odd values like negative 0.
This commit is contained in:
parent
f4f4f51f1a
commit
be45a67895
1 changed files with 12 additions and 0 deletions
|
@ -168,6 +168,18 @@
|
|||
["1 0 BOOLOR", "NOP", "P2SH,STRICTENC", "OK"],
|
||||
["0 1 BOOLOR", "NOP", "P2SH,STRICTENC", "OK"],
|
||||
["0 0 BOOLOR", "NOT", "P2SH,STRICTENC", "OK"],
|
||||
["0x01 0x80", "DUP BOOLOR", "P2SH,STRICTENC", "EVAL_FALSE", "negative-0 negative-0 BOOLOR"],
|
||||
["0x01 0x00", "DUP BOOLOR", "P2SH,STRICTENC", "EVAL_FALSE", " non-minimal-0 non-minimal-0 BOOLOR"],
|
||||
["0x01 0x81", "DUP BOOLOR", "P2SH,STRICTENC", "OK", "-1 -1 BOOLOR"],
|
||||
["0x01 0x80", "DUP BOOLAND", "P2SH,STRICTENC", "EVAL_FALSE", "negative-0 negative-0 BOOLAND"],
|
||||
["0x01 0x00", "DUP BOOLAND", "P2SH,STRICTENC", "EVAL_FALSE", " non-minimal-0 non-minimal-0 BOOLAND"],
|
||||
["0x01 0x81", "DUP BOOLAND", "P2SH,STRICTENC", "OK", "-1 -1 BOOLAND"],
|
||||
["0x01 0x00", "NOT", "P2SH,STRICTENC", "OK", "non-minimal-0 NOT"],
|
||||
["0x01 0x80", "NOT", "P2SH,STRICTENC", "OK", "negative-0 NOT"],
|
||||
["0x01 0x81", "NOT", "P2SH,STRICTENC", "EVAL_FALSE", "negative 1 NOT"],
|
||||
["0x01 0x80 0", "NUMEQUAL", "P2SH", "OK", "-0 0 NUMEQUAL"],
|
||||
["0x01 0x00 0", "NUMEQUAL", "P2SH", "OK", "non-minimal-0 0 NUMEQUAL"],
|
||||
["0x02 0x00 0x00 0", "NUMEQUAL", "P2SH", "OK", "non-minimal-0 0 NUMEQUAL"],
|
||||
["16 17 BOOLOR", "NOP", "P2SH,STRICTENC", "OK"],
|
||||
["11 10 1 ADD", "NUMEQUAL", "P2SH,STRICTENC", "OK"],
|
||||
["11 10 1 ADD", "NUMEQUALVERIFY 1", "P2SH,STRICTENC", "OK"],
|
||||
|
|
Loading…
Add table
Reference in a new issue