2020-04-23 14:19:00 +02:00
|
|
|
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
|
|
|
|
|
|
/*
|
2022-04-26 10:22:21 +02:00
|
|
|
* Copyright (C) 2019-2022 Canonical Ltd
|
2020-04-23 14:19:00 +02:00
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-06-04 17:20:01 -03:00
|
|
|
package secboot_test
|
2020-04-23 14:19:00 +02:00
|
|
|
|
|
|
|
|
import (
|
2021-04-23 14:24:51 +02:00
|
|
|
"testing"
|
2020-06-04 17:20:01 -03:00
|
|
|
|
|
|
|
|
. "gopkg.in/check.v1"
|
2020-04-23 14:19:00 +02:00
|
|
|
)
|
|
|
|
|
|
2021-04-23 14:24:51 +02:00
|
|
|
func TestSecboot(t *testing.T) { TestingT(t) }
|
|
|
|
|
|
2020-10-05 12:20:14 +02:00
|
|
|
type encryptSuite struct {
|
|
|
|
|
dir string
|
|
|
|
|
}
|
2020-06-04 17:20:01 -03:00
|
|
|
|
2020-07-02 16:49:14 -03:00
|
|
|
var _ = Suite(&encryptSuite{})
|
2020-06-04 17:20:01 -03:00
|
|
|
|
2020-10-05 12:20:14 +02:00
|
|
|
func (s *encryptSuite) SetUpTest(c *C) {
|
|
|
|
|
s.dir = c.MkDir()
|
|
|
|
|
}
|