Skip to content

Commit

Permalink
Add JIT backwards compatibility test
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasmaPower authored and tsahee committed Sep 20, 2024
1 parent 6c62bf8 commit 70a24c3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions system_tests/block_validator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,20 @@ func TestBlockValidatorSimpleOnchain(t *testing.T) {
testBlockValidatorSimple(t, opts)
}

func TestBlockValidatorSimpleJITOnchainWithPublishedMachine(t *testing.T) {
cr, err := github.LatestConsensusRelease(context.Background())
Require(t, err)
machPath := populateMachineDir(t, cr)
opts := Options{
dasModeString: "onchain",
workloadLoops: 1,
workload: ethSend,
arbitrator: false,
wasmRootDir: machPath,
}
testBlockValidatorSimple(t, opts)
}

func TestBlockValidatorSimpleOnchainWithPublishedMachine(t *testing.T) {
cr, err := github.LatestConsensusRelease(context.Background())
Require(t, err)
Expand Down

0 comments on commit 70a24c3

Please sign in to comment.