Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com> Upstream-commit: 22873eae3153f93b55b3b09eff887a3bfdc8eb54 Component: engine
14 lines
199 B
Go
14 lines
199 B
Go
// +build linux,!btrfs_noversion
|
|
|
|
package btrfs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLibVersion(t *testing.T) {
|
|
if btrfsLibVersion() <= 0 {
|
|
t.Errorf("expected output from btrfs lib version > 0")
|
|
}
|
|
}
|