Skip to content

Commit d8540e0

Browse files
committed
chore: update tests inven
Signed-off-by: Ji Hwan <jkim@polygon.technology>
1 parent 3171bec commit d8540e0

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

TESTSINVENTORY.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -157,37 +157,37 @@ Table of tests currently implemented or being implemented in the E2E repository.
157157
| 50 concurrent eth_getBalance requests all return valid results | [Link](./tests/pos/rpc-concurrent-load.bats#L58) | |
158158
| 50 concurrent eth_getLogs requests all return valid arrays | [Link](./tests/pos/rpc-concurrent-load.bats#L103) | |
159159
| 50 concurrent requests across additional RPC methods succeed | [Link](./tests/pos/rpc-concurrent-load.bats#L316) | |
160-
| ADDMOD and MULMOD compute correctly | [Link](./tests/pos/evm-state-invariants.bats#L1519) | |
161-
| BASEFEE opcode matches block baseFeePerGas | [Link](./tests/pos/evm-state-invariants.bats#L1273) | |
162-
| BYTE opcode extracts correct byte from word | [Link](./tests/pos/evm-state-invariants.bats#L1470) | |
163-
| CALLDATASIZE returns correct input length | [Link](./tests/pos/evm-state-invariants.bats#L1421) | |
164-
| CODESIZE returns correct runtime size | [Link](./tests/pos/evm-state-invariants.bats#L1373) | |
165-
| COINBASE opcode returns block miner address | [Link](./tests/pos/evm-state-invariants.bats#L1101) | |
160+
| ADDMOD and MULMOD compute correctly | [Link](./tests/pos/evm-state-invariants.bats#L1520) | |
161+
| BASEFEE opcode matches block baseFeePerGas | [Link](./tests/pos/evm-state-invariants.bats#L1274) | |
162+
| BYTE opcode extracts correct byte from word | [Link](./tests/pos/evm-state-invariants.bats#L1471) | |
163+
| CALLDATASIZE returns correct input length | [Link](./tests/pos/evm-state-invariants.bats#L1422) | |
164+
| CODESIZE returns correct runtime size | [Link](./tests/pos/evm-state-invariants.bats#L1374) | |
165+
| COINBASE opcode returns block miner address | [Link](./tests/pos/evm-state-invariants.bats#L1102) | |
166166
| CREATE deploys to the address predicted by cast compute-address | [Link](./tests/pos/evm-state-invariants.bats#L82) | |
167167
| CREATE with maximum value transfer in constructor | [Link](./tests/pos/contract-creation-edge-cases.bats#L520) | |
168168
| CREATE2 address matches keccak256(0xff ++ deployer ++ salt ++ initCodeHash) | [Link](./tests/pos/evm-state-invariants.bats#L394) | |
169169
| CREATE2 deploys child to predicted salt-derived address | [Link](./tests/pos/contract-creation-edge-cases.bats#L207) | |
170-
| Calldata gas accounting: nonzero bytes cost more than zero bytes | [Link](./tests/pos/evm-state-invariants.bats#L1813) | |
170+
| Calldata gas accounting: nonzero bytes cost more than zero bytes | [Link](./tests/pos/evm-state-invariants.bats#L1814) | |
171171
| Contract creation receipt has contractAddress field | [Link](./tests/pos/rpc-conformance.bats#L1036) | |
172-
| Cross-contract storage isolation: two contracts store different values at slot 0 | [Link](./tests/pos/evm-state-invariants.bats#L1581) | |
172+
| Cross-contract storage isolation: two contracts store different values at slot 0 | [Link](./tests/pos/evm-state-invariants.bats#L1582) | |
173173
| DELEGATECALL preserves caller context: msg.sender stored via proxy | [Link](./tests/pos/evm-state-invariants.bats#L612) | |
174174
| EIP-1559 sender decrease equals value plus effectiveGasPrice times gasUsed | [Link](./tests/pos/evm-state-invariants.bats#L238) | |
175175
| EIP-2930 type-1 access list tx fuzz and verify liveness | [Link](./tests/pos/evm-fuzz.bats#L523) | |
176-
| EXTCODEHASH correctness for EOA, deployed contract, and nonexistent account | [Link](./tests/pos/evm-state-invariants.bats#L789) | |
176+
| EXTCODEHASH correctness for EOA, deployed contract, and nonexistent account | [Link](./tests/pos/evm-state-invariants.bats#L790) | |
177177
| Empty batch JSON-RPC returns empty array | [Link](./tests/pos/rpc-conformance.bats#L1114) | |
178-
| GASLIMIT opcode matches block gasLimit | [Link](./tests/pos/evm-state-invariants.bats#L1223) | |
179-
| Gas limit boundary: exact intrinsic gas (21000) succeeds for simple transfer | [Link](./tests/pos/evm-state-invariants.bats#L1790) | |
180-
| LOG event emission and retrieval via eth_getLogs | [Link](./tests/pos/evm-state-invariants.bats#L856) | |
181-
| Multiple storage slots in one transaction | [Link](./tests/pos/evm-state-invariants.bats#L1703) | |
182-
| NUMBER opcode returns correct block number | [Link](./tests/pos/evm-state-invariants.bats#L1175) | |
183-
| Nonce-too-low rejection | [Link](./tests/pos/evm-state-invariants.bats#L1754) | |
178+
| GASLIMIT opcode matches block gasLimit | [Link](./tests/pos/evm-state-invariants.bats#L1224) | |
179+
| Gas limit boundary: exact intrinsic gas (21000) succeeds for simple transfer | [Link](./tests/pos/evm-state-invariants.bats#L1791) | |
180+
| LOG event emission and retrieval via eth_getLogs | [Link](./tests/pos/evm-state-invariants.bats#L857) | |
181+
| Multiple storage slots in one transaction | [Link](./tests/pos/evm-state-invariants.bats#L1704) | |
182+
| NUMBER opcode returns correct block number | [Link](./tests/pos/evm-state-invariants.bats#L1176) | |
183+
| Nonce-too-low rejection | [Link](./tests/pos/evm-state-invariants.bats#L1755) | |
184184
| OOG during code-deposit phase fails the creation | [Link](./tests/pos/contract-creation-edge-cases.bats#L352) | |
185185
| Parent hash chain integrity across 5 blocks | [Link](./tests/pos/rpc-conformance.bats#L903) | |
186-
| SELFBALANCE returns contract's own balance | [Link](./tests/pos/evm-state-invariants.bats#L1326) | |
186+
| SELFBALANCE returns contract's own balance | [Link](./tests/pos/evm-state-invariants.bats#L1327) | |
187187
| SELFDESTRUCT during construction leaves no code and zero balance | [Link](./tests/pos/contract-creation-edge-cases.bats#L315) | |
188188
| SSTORE + SLOAD roundtrip: stored value is retrievable and unwritten slots are zero | [Link](./tests/pos/evm-state-invariants.bats#L501) | |
189-
| SSTORE gas refund: clearing a storage slot uses less gas than setting it | [Link](./tests/pos/evm-state-invariants.bats#L960) | |
190-
| SSTORE overwrite: new value replaces old | [Link](./tests/pos/evm-state-invariants.bats#L1642) | |
189+
| SSTORE gas refund: clearing a storage slot uses less gas than setting it | [Link](./tests/pos/evm-state-invariants.bats#L961) | |
190+
| SSTORE overwrite: new value replaces old | [Link](./tests/pos/evm-state-invariants.bats#L1643) | |
191191
| STATICCALL cannot modify state: SSTORE attempt reverts | [Link](./tests/pos/evm-state-invariants.bats#L701) | |
192192
| Sum of receipt gasUsed matches block gasUsed | [Link](./tests/pos/rpc-conformance.bats#L935) | |
193193
| add new validator | [Link](./tests/pos/validator.bats#L20) | |

0 commit comments

Comments
 (0)