mirror of
https://github.com/kardianos/service.git
synced 2025-09-26 21:01:20 +08:00
15 lines
364 B
Go
15 lines
364 B
Go
// Copyright 2016 Lawrence Woodman <lwoodman@vlifesystems.com>
|
|
// Use of this source code is governed by a zlib-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !su
|
|
// +build !su
|
|
|
|
package service_test
|
|
|
|
import "testing"
|
|
|
|
func TestInstallRunRestartStopRemove(t *testing.T) {
|
|
t.Skip("skipping test as not running as root/admin (Build tag: su)")
|
|
}
|