Skip to content

Commit

Permalink
tests/cl.filesystem: skip "/run", fix test failure on arm64
Browse files Browse the repository at this point in the history
On arm64, we have a `/run/udev/data/+platform:Fixed MDIO bus.0`, which
gets flagged due to the presence of spaces in the filename. Since /run
is an ephemeral directory and we skip other directories (/proc, /sys)
for that reason, it seems like a good idea to skip /run as well.
  • Loading branch information
wrl committed Jun 14, 2021
1 parent 5a60b1d commit 2c55059
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kola/tests/misc/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ func Blacklist(c cluster.TestCluster) {
"/sys",
"/var/lib/docker",
"/var/lib/rkt",
"/run",
}

blacklist := []string{
Expand Down

0 comments on commit 2c55059

Please sign in to comment.