mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-13 15:55:20 +00:00
disable proposer slashing tests only on 64-bit windows (#438)
* disable proposer slashing tests only on 64-bit windows * add visible skipped-test output
This commit is contained in:
parent
8676bbf388
commit
1061708ec2
@ -64,13 +64,18 @@ template runTest(identifier: untyped) =
|
||||
`testImpl_proposer_slashing _ identifier`()
|
||||
|
||||
suite "Official - Operations - Proposer slashing " & preset():
|
||||
runTest(success)
|
||||
runTest(invalid_sig_1)
|
||||
runTest(invalid_sig_2)
|
||||
runTest(invalid_sig_1_and_2)
|
||||
runTest(invalid_proposer_index)
|
||||
runTest(epochs_are_different)
|
||||
runTest(headers_are_same)
|
||||
runTest(proposer_is_not_activated)
|
||||
runTest(proposer_is_slashed)
|
||||
runTest(proposer_is_withdrawn)
|
||||
# TODO https://github.com/status-im/nim-beacon-chain/issues/435
|
||||
# CI Win64 - "The parameter is incorrect"
|
||||
when not (defined(windows) and sizeof(int) == 8):
|
||||
runTest(success)
|
||||
runTest(invalid_sig_1)
|
||||
runTest(invalid_sig_2)
|
||||
runTest(invalid_sig_1_and_2)
|
||||
runTest(invalid_proposer_index)
|
||||
runTest(epochs_are_different)
|
||||
runTest(headers_are_same)
|
||||
runTest(proposer_is_not_activated)
|
||||
runTest(proposer_is_slashed)
|
||||
runTest(proposer_is_withdrawn)
|
||||
else:
|
||||
echo "Skipped for Windows 64-bit CI"
|
||||
|
Loading…
x
Reference in New Issue
Block a user