Skip to content

Commit

Permalink
Expected output update
Browse files Browse the repository at this point in the history
  • Loading branch information
palinatolmach committed Nov 26, 2024
1 parent 427d054 commit a9704b8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/tests/integration/test-data/show/contracts.k.expected
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,8 @@ module S2KtestZModArithmeticTest-CONTRACT

syntax S2KtestZModArithmeticTestMethod ::= "S2KtestZUndwmulZUndweaklyZUndincreasingZUndpositive" "(" Int ":" "uint256" "," Int ":" "uint256" ")" [symbol("method_test%ArithmeticTest_S2KtestZUndwmulZUndweaklyZUndincreasingZUndpositive_uint256_uint256")]

syntax S2KtestZModArithmeticTestMethod ::= "S2KtestZUndxor" "(" Int ":" "uint256" "," Int ":" "uint256" ")" [symbol("method_test%ArithmeticTest_S2KtestZUndxor_uint256_uint256")]

rule ( S2KtestZModArithmeticTest . S2KISZUndTEST ( ) => #abiCallData ( "IS_TEST" , .TypedArgs ) )


Expand Down Expand Up @@ -785,6 +787,12 @@ module S2KtestZModArithmeticTest-CONTRACT
))


rule ( S2KtestZModArithmeticTest . S2KtestZUndxor ( KV0_a : uint256 , KV1_b : uint256 ) => #abiCallData ( "test_xor" , ( #uint256 ( KV0_a ) , ( #uint256 ( KV1_b ) , .TypedArgs ) ) ) )
ensures ( #rangeUInt ( 256 , KV0_a )
andBool ( #rangeUInt ( 256 , KV1_b )
))


rule ( selector ( "IS_TEST()" ) => 4202047188 )


Expand Down Expand Up @@ -853,6 +861,9 @@ module S2KtestZModArithmeticTest-CONTRACT

rule ( selector ( "test_wmul_weakly_increasing_positive(uint256,uint256)" ) => 1421647895 )


rule ( selector ( "test_xor(uint256,uint256)" ) => 2156875273 )


endmodule

Expand Down

0 comments on commit a9704b8

Please sign in to comment.