File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/java/com/github/fabienrenaud/jjb Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ dependencies {
9898 // QuickBuffers
9999 implementation group : ' us.hebi.quickbuf' , name : ' quickbuf-runtime' , version : ' 1.4'
100100 // wast
101- implementation group : ' io.github.wycst' , name : ' wast' , version : ' 0.0.23 '
101+ implementation group : ' io.github.wycst' , name : ' wast' , version : ' 0.0.25 '
102102
103103 // Test
104104 testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.2'
Original file line number Diff line number Diff line change 22
33import com .github .fabienrenaud .jjb .data .JsonSource ;
44import com .github .fabienrenaud .jjb .data .JsonSourceFactory ;
5+ import io .github .wycst .wast .json .JSONVmOptions ;
56
67/**
78 * @author Fabien Renaud
@@ -11,6 +12,11 @@ public abstract class JsonBench {
1112 protected static final JsonSource CLI_JSON_SOURCE = JsonSourceFactory .create ();
1213 public abstract JsonSource JSON_SOURCE ();
1314
15+ public JsonBench () {
16+ JSONVmOptions .disableIntrinsicCandidate ();
17+ JSONVmOptions .disableIncubatorVector ();
18+ }
19+
1420 public Object gson () throws Exception {
1521 return null ;
1622 }
You can’t perform that action at this time.
0 commit comments