mirror of
https://github.com/rancher/os.git
synced 2025-06-26 15:01:34 +00:00
12 lines
325 B
Go
12 lines
325 B
Go
package integration
|
|
|
|
import . "gopkg.in/check.v1"
|
|
|
|
func (s *QemuSuite) TestSysctl(c *C) {
|
|
err := s.RunQemu("--cloud-config", "./tests/assets/test_20/cloud-config.yml")
|
|
c.Assert(err, IsNil)
|
|
|
|
s.CheckCall(c, "sudo cat /proc/sys/kernel/domainname | grep test")
|
|
s.CheckCall(c, "sudo cat /proc/sys/dev/cdrom/debug | grep 1")
|
|
}
|