Skip to content

Commit

Permalink
Updated experimental tests and added echeck ooni/probe#2567
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Oct 13, 2023
1 parent 5876adf commit e8c97c7
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ public AbstractTest[] getTestList(@Nullable PreferenceManager pm) {
if (super.getTestList(pm) == null) {
ArrayList<AbstractTest> list = new ArrayList<>();
if (pm == null || pm.isExperimentalOn()){
list.add(new Experimental("echcheck"));
list.add(new Experimental("stunreachability"));
list.add(new Experimental("dnscheck"));
if ((pm == null || pm.isLongRunningTestsInForeground()) || getAutoRun()){
list.add(new Experimental("torsf"));
list.add(new Experimental("vanilla_tor"));
}
list.add(new Experimental("stunreachability"));
list.add(new Experimental("dnscheck"));
}
}
super.setTestList(Lists.transform(list, test -> {
if (getAutoRun()) test.setOrigin(AbstractTest.AUTORUN);
Expand Down

0 comments on commit e8c97c7

Please sign in to comment.