Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add openvpn to experimental suite #569

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ooniprobe/Test/Suite/ExperimentalSuite.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ - (NSArray *)getTestList {
if ([self.testList count] == 0) {
if ([SettingsUtility isExperimentalTestEnabled]) {
[self.testList addObject:[[Experimental alloc] initWithName:@"stunreachability"]];
[self.testList addObject:[[Experimental alloc] initWithName:@"dnscheck"]];
[self.testList addObject:[[Experimental alloc] initWithName:@"openvpn"]];
[self.testList addObject:[[Experimental alloc] initWithName:@"echcheck"]];
if ([SettingsUtility isLongRunningTestsInForegroundEnabled] || self.autoRun) {
[self.testList addObject:[[Experimental alloc] initWithName:@"torsf"]];
Expand Down
2 changes: 1 addition & 1 deletion ooniprobe/Utility/LocalizationUtility.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ + (NSString*)getLongDescriptionForTest:(NSString*)testName{
return NSLocalizedFormatString(@"Dashboard.Experimental.Overview.Paragraph",
[NSString stringWithFormat:@"%@ %@ %@",
@"\n\n- [STUN Reachability](https://github.com/ooni/spec/blob/master/nettests/ts-025-stun-reachability.md) "
"\n\n- [DNS Check](https://github.com/ooni/spec/blob/master/nettests/ts-028-dnscheck.md) "
"\n\n- [OpenVPN](https://github.com/ooni/spec/blob/master/nettests/ts-040-openvpn.md) "
"\n\n- [RiseupVPN](https://ooni.org/nettest/riseupvpn/) "
"\n\n- [ECH Check](https://github.com/ooni/spec/blob/master/nettests/ts-039-echcheck.md)",
[NSString stringWithFormat:@"%@ ( %@ )", @"\n\n- [Tor Snowflake](https://ooni.org/nettest/tor-snowflake/) ",NSLocalizedFormatString(@"Settings.TestOptions.LongRunningTest",nil)],
Expand Down
Loading