blob: dfa9de54320dfba3b3b9debcd4df121f3d11205d [file] [log] [blame] [edit]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package platform
import (
"context"
"chromiumos/tast/common/storage"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: StorageWearoutDetect,
Desc: "Fails if storage device information indicates impending failure",
Contacts: []string{
"puthik@chromium.org", // Autotest author
"brooke.mylander@intel.com", // Migrated Autotest to Tast
},
Attr: []string{"group:mainline", "informational"},
SoftwareDeps: []string{"storage_wearout_detect"},
})
}
func StorageWearoutDetect(ctx context.Context, s *testing.State) {
info, err := storage.Get(ctx)
if err != nil {
s.Fatal("Failed to get storage info: ", err)
}
if info.Status == storage.Failing {
s.Error("Storage device is failing, consider removing from DUT farm")
}
}