Skip to content

Commit

Permalink
[GR-9059] The TCK tests should be configured with full access.
Browse files Browse the repository at this point in the history
PullRequest: graal/1237
  • Loading branch information
timfel committed Mar 29, 2018
2 parents 6ca623c + 09aa241 commit c5c4cac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void close() throws IOException {
Context getContext() {
checkState(State.NEW, State.INITIALIZING, State.INITIALIZED);
if (context == null) {
this.context = Context.newBuilder().out(NullOutputStream.INSTANCE).err(NullOutputStream.INSTANCE).build();
this.context = Context.newBuilder().out(NullOutputStream.INSTANCE).err(NullOutputStream.INSTANCE).allowAllAccess(true).build();
this.inlineVerifier = context.getEngine().getInstruments().get("TckVerifierInstrument").lookup(InlineVerifier.class);
Assert.assertNotNull(this.inlineVerifier);
}
Expand Down

0 comments on commit c5c4cac

Please sign in to comment.