mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
We need to use syscall.Settimeofday to set the time of day from snap-bootstrap in the initrd, but syscall.Timeval has architecture dependent definitions, on 32-bit systems it uses int32's, but on 64-bit systems it uses int64's, so we have to split up the actual implementation between two files. Signed-off-by: Ian Johnson <ian.johnson@canonical.com>
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2020 Canonical Ltd
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
package osutil_test
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
|
|
. "gopkg.in/check.v1"
|
|
|
|
"github.com/snapcore/snapd/osutil"
|
|
)
|
|
|
|
type settimeTestSuite struct{}
|
|
|
|
var _ = Suite(&settimeTestSuite{})
|
|
|
|
func (s *settimeTestSuite) TestSetTime(c *C) {
|
|
timeIn, err := time.Parse("Mon Jan 2 15:04:05 -0700 MST 2006", "Mon Jan 2 15:04:05 -0700 MST 2006")
|
|
c.Assert(err, IsNil)
|
|
|
|
r := osutil.MockSyscallSettimeofday(func(t *syscall.Timeval) error {
|
|
c.Assert(int64(t.Sec), Equals, timeIn.Unix())
|
|
c.Assert(int64(t.Usec), Equals, timeIn.UnixNano()/1000%1000)
|
|
return nil
|
|
})
|
|
defer r()
|
|
|
|
err = osutil.SetTime(timeIn)
|
|
c.Assert(err, IsNil)
|
|
}
|