aboutsummaryrefslogtreecommitdiff
path: root/src/test/data/script_valid.json
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-08-06 16:06:07 +1000
committerGavin Andresen <gavinandresen@gmail.com>2013-08-06 16:06:07 +1000
commitbdd34642dc7e6d5c2d8c7cf6b53e6041b89bf022 (patch)
treed8b78b65c6adb66d701d05e8e4e9992eeca07cda /src/test/data/script_valid.json
parente07d9f77e9093681f8e419c599615b13bb3aa01d (diff)
downloadbitcoin-bdd34642dc7e6d5c2d8c7cf6b53e6041b89bf022.tar.xz
More unit tests for NUMEQUAL
Diffstat (limited to 'src/test/data/script_valid.json')
-rw-r--r--src/test/data/script_valid.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/data/script_valid.json b/src/test/data/script_valid.json
index cc56a310ae..7aefc8e6e8 100644
--- a/src/test/data/script_valid.json
+++ b/src/test/data/script_valid.json
@@ -316,6 +316,15 @@
["2147483647", "1ADD 1"],
["-2147483647", "1ADD 1"],
+["1", "0x02 0x0100 EQUAL NOT", "Not the same byte array..."],
+["1", "0x02 0x0100 NUMEQUAL", "... but they are numerically equal"],
+["11", "0x4c 0x03 0x0b0000 NUMEQUAL"],
+["0", "0x01 0x80 EQUAL NOT"],
+["0", "0x01 0x80 NUMEQUAL", "Zero numerically equals negative zero"],
+["0", "0x02 0x0080 NUMEQUAL"],
+["0x03 0x000080", "0x04 0x00000080 NUMEQUAL"],
+["0x03 0x100080", "0x04 0x10000080 NUMEQUAL"],
+["0x03 0x100000", "0x04 0x10000000 NUMEQUAL"],
["NOP", "NOP 1", "The following tests check the if(stack.size() < N) tests in each opcode"],
["1", "IF 1 ENDIF", "They are here to catch copy-and-paste errors"],