@@ -750,15 +750,13 @@ func TestValueGenerationGenerateAllTypes(t *testing.T) {
750
750
751
751
// TestValueGenerationSolving runs a series of tests to test the value generator can solve expected problems.
752
752
func TestValueGenerationSolving (t * testing.T ) {
753
- // TODO: match_ints_xy is slower than match_uints_xy in the value generator because AST doesn't retain negative
754
- // numbers, improve our logic to solve it faster, then re-enable this.
755
753
filePaths := []string {
756
754
"testdata/contracts/value_generation/match_addr_contract.sol" ,
757
755
"testdata/contracts/value_generation/match_addr_exact.sol" ,
758
756
"testdata/contracts/value_generation/match_addr_sender.sol" ,
759
757
"testdata/contracts/value_generation/match_string_exact.sol" ,
760
758
"testdata/contracts/value_generation/match_structs_xy.sol" ,
761
- // "testdata/contracts/value_generation/match_ints_xy.sol",
759
+ "testdata/contracts/value_generation/match_ints_xy.sol" ,
762
760
"testdata/contracts/value_generation/match_uints_xy.sol" ,
763
761
"testdata/contracts/value_generation/match_payable_xy.sol" ,
764
762
}
@@ -769,7 +767,7 @@ func TestValueGenerationSolving(t *testing.T) {
769
767
config .Fuzzing .TargetContracts = []string {"TestContract" }
770
768
config .Fuzzing .Testing .AssertionTesting .Enabled = false
771
769
config .Fuzzing .Testing .OptimizationTesting .Enabled = false
772
- config .Slither .UseSlither = false
770
+ config .Slither .UseSlither = true
773
771
},
774
772
method : func (f * fuzzerTestContext ) {
775
773
// Start the fuzzer
@@ -990,7 +988,7 @@ func TestDeploymentOrderWithCoverage(t *testing.T) {
990
988
config .Fuzzing .TargetContracts = []string {"InheritedFirstContract" , "InheritedSecondContract" }
991
989
config .Fuzzing .Testing .AssertionTesting .Enabled = false
992
990
config .Fuzzing .Testing .OptimizationTesting .Enabled = false
993
- config .Slither .UseSlither = false
991
+ config .Slither .UseSlither = true
994
992
},
995
993
method : func (f * fuzzerTestContext ) {
996
994
// Setup checks for event emissions
0 commit comments