Skip to content

Commit

Permalink
feat: add dnscheck to experimental (#477)
Browse files Browse the repository at this point in the history
This diff adds dnscheck to experimental. Originally, in the related PR
(#477) we also added support
for torsf. But that has been backed out until we figure out exactly the
correct configuration (ooni/probe#2004).

Reference issue: ooni/probe#1973).

Co-authored-by: Norbel Ambanumben <aanorbel@gmail.com>
  • Loading branch information
bassosimone and aanorbel authored Feb 7, 2022
1 parent 555be27 commit 4b634b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public ExperimentalSuite() {
if (super.getTestList(pm) == null) {
ArrayList<AbstractTest> list = new ArrayList<>();
list.add(new Experimental("stunreachability"));
list.add(new Experimental("dnscheck"));
// TODO: add once torsf is considered stable
// list.add(new Experimental("torsf"));
super.setTestList(list.toArray(new AbstractTest[0]));
}
return super.getTestList(pm);
Expand Down
4 changes: 2 additions & 2 deletions engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ android {
dependencies {
// For the stable and dev app flavours we're using the library
// build published at Maven Central.
stableImplementation 'org.ooni:oonimkall:2021.12.14-160025'
devImplementation 'org.ooni:oonimkall:2021.12.14-160025'
stableImplementation 'org.ooni:oonimkall:2022.01.24-135942'
devImplementation 'org.ooni:oonimkall:2022.01.24-135942'

// For the experimental flavour, you need to compile your own
// oonimkall.aar and put it into the ../engine-experimental dir
Expand Down

0 comments on commit 4b634b1

Please sign in to comment.