diff options
Diffstat (limited to 'runsc/boot/config.go')
-rw-r--r-- | runsc/boot/config.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/runsc/boot/config.go b/runsc/boot/config.go index d5dd400d1..c13ac150d 100644 --- a/runsc/boot/config.go +++ b/runsc/boot/config.go @@ -176,18 +176,10 @@ type Config struct { // DisableSeccomp indicates whether seccomp syscall filters should be // disabled. Pardon the double negation, but default to enabled is important. DisableSeccomp bool - - // TestModeNoFlags indicates that the ToFlags method should return - // empty. This should only be used in tests, since the test runner does - // not know about all the flags. - TestModeNoFlags bool } // ToFlags returns a slice of flags that correspond to the given Config. func (c *Config) ToFlags() []string { - if c.TestModeNoFlags { - return nil - } return []string{ "--root=" + c.RootDir, "--debug=" + strconv.FormatBool(c.Debug), |