You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
612 B
21 lines
612 B
# Copyright 2018 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.
|
|
|
|
AUTHOR = "allenvic"
|
|
NAME = "enterprise_SmbProviderDaemon"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Enterprise"
|
|
TEST_CLASS = "enterprise"
|
|
TEST_TYPE = "client"
|
|
|
|
DOC = """
|
|
Runs commands on the smbprovider daemon. Connects to an actual SMB server.
|
|
"""
|
|
|
|
from autotest_lib.client.common_lib import base_utils
|
|
|
|
args_dict = base_utils.args_to_dict(args)
|
|
mount_path = args_dict.get('mount_path')
|
|
|
|
job.run_test('enterprise_SmbProviderDaemon', mount_path=mount_path) |