=== RUN TestDeviceManager
----------------------------------------------------------------------
FAIL: firstboot_test.go:628: FirstBootTestSuite.TestPopulateFromSeedConfigureHappy
firstboot_test.go:731:
// and check the snap got correctly installed
c.Check(osutil.FileExists(filepath.Join(dirs.SnapMountDir, "foo", "128", "meta", "snap.yaml")), Equals, true)
... obtained bool = false
... expected bool = true
firstboot_test.go:748:
c.Assert(err, IsNil)
... value *config.NoOptionError = &config.NoOptionError{SnapName:"core", Key:"core-cfg"} ("snap \"core\" has no \"core-cfg\" configuration option")
----------------------------------------------------------------------
FAIL: firstboot_test.go:367: FirstBootTestSuite.TestPopulateFromSeedHappy
firstboot_test.go:386:
// and check the snap got correctly installed
c.Check(osutil.FileExists(filepath.Join(dirs.SnapMountDir, "foo", "128", "meta", "snap.yaml")), Equals, true)
... obtained bool = false
... expected bool = true
firstboot_test.go:388:
c.Check(osutil.FileExists(filepath.Join(dirs.SnapMountDir, "local", "x1", "meta", "snap.yaml")), Equals, true)
... obtained bool = false
... expected bool = true
firstboot_test.go:408:
c.Assert(err, IsNil)
... value *errors.errorString = &errors.errorString{s:"cannot find snap \"foo\""} ("cannot find snap \"foo\"")
----------------------------------------------------------------------
FAIL: firstboot_test.go:474: FirstBootTestSuite.TestPopulateFromSeedHappyMultiAssertsFiles
firstboot_test.go:548:
// and check the snap got correctly installed
c.Check(osutil.FileExists(filepath.Join(dirs.SnapMountDir, "foo", "128", "meta", "snap.yaml")), Equals, true)
... obtained bool = false
... expected bool = true
firstboot_test.go:551:
// and check the snap got correctly installed
c.Check(osutil.FileExists(filepath.Join(dirs.SnapMountDir, "bar", "65", "meta", "snap.yaml")), Equals, true)
... obtained bool = false
... expected bool = true
firstboot_test.go:563:
c.Assert(err, IsNil)
... value *errors.errorString = &errors.errorString{s:"cannot find snap \"foo\""} ("cannot find snap \"foo\"")
OOPS: 38 passed, 1 skipped, 3 FAILED
--- FAIL: TestDeviceManager (53.67s)
FAIL
FAIL github.com/snapcore/snapd/overlord/devicestate 54.766s
=== RUN TestHookManager