blob: 2156b22630a48db96fd8ec3422cb5c8d062df13f [file] [log] [blame] [edit]
// Copyright 2020 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/local/bundles/cros/platform/crosdisks"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: CrosDisksRename,
Desc: "Verifies CrosDisks renames labels of removable media",
Contacts: []string{
"chromeos-files-syd@google.com",
"dats@chromium.org",
"fdegros@chromium.org",
},
Attr: []string{"group:mainline"},
})
}
func CrosDisksRename(ctx context.Context, s *testing.State) {
crosdisks.RunRenameTests(ctx, s)
}