make localtest failure with selinux enabled

Signed-off-by: rajasec <rajasec79@gmail.com>
This commit is contained in:
rajasec 2015-11-24 23:24:30 +05:30
parent 36015470c2
commit ce68f7aef7
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,7 @@
package label
import (
"os"
"strings"
"testing"
@ -89,6 +90,10 @@ func TestDuplicateLabel(t *testing.T) {
}
func TestRelabel(t *testing.T) {
testdir := "/tmp/test"
if err := os.Mkdir(testdir, 0755); err != nil {
t.Fatal(err)
}
defer os.RemoveAll(testdir)
label := "system_u:system_r:svirt_sandbox_file_t:s0:c1,c2"
if err := Relabel(testdir, "", true); err != nil {
t.Fatal("Relabel with no label failed: %v", err)