f626a015c9
While there make vanilla_tor only run in unattended mode. While there also make torsf unattended-mode only. See https://github.com/ooni/probe/issues/2101 See https://github.com/ooni/probe/issues/2057
17 lines
306 B
Go
17 lines
306 B
Go
package nettests
|
|
|
|
// TorSf test implementation
|
|
type TorSf struct {
|
|
}
|
|
|
|
// Run starts the test
|
|
func (h TorSf) Run(ctl *Controller) error {
|
|
builder, err := ctl.Session.NewExperimentBuilder("torsf")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ctl.Run(builder, []string{""})
|
|
}
|
|
|
|
func (h TorSf) onlyBackground() {}
|