2019-01-11 12:56:05 +00:00
|
|
|
// Copyright (C) 2019 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
2020-07-28 09:13:15 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2019-01-11 12:56:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// fatal is the required common interface between *testing.B and *testing.T
|
|
|
|
type fatal interface {
|
|
|
|
Fatal(...interface{})
|
2019-02-05 18:01:05 +00:00
|
|
|
Helper()
|
2019-01-11 12:56:05 +00:00
|
|
|
}
|
|
|
|
|
2019-03-09 18:45:36 +00:00
|
|
|
func must(f fatal, err error) {
|
2019-02-05 18:01:05 +00:00
|
|
|
f.Helper()
|
2019-03-09 18:45:36 +00:00
|
|
|
if err != nil {
|
2019-01-11 12:56:05 +00:00
|
|
|
f.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 09:13:15 +00:00
|
|
|
func mustRemove(f fatal, err error) {
|
|
|
|
f.Helper()
|
|
|
|
if err != nil && !fs.IsNotExist(err) {
|
|
|
|
f.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|