Move OCL tests from test-framework repository

Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
Robert Baldyga
2019-10-17 17:15:38 +02:00
parent d2666b785a
commit 4fb82abeca
35 changed files with 4102 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#
# Copyright(c) 2019 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#
from .cli import *
from core.test_run import TestRun
def help(shortcut: bool = False):
return TestRun.executor.run(ctl_help(shortcut))
def start():
return TestRun.executor.run(ctl_start())
def stop(flush: bool = False):
return TestRun.executor.run(ctl_stop(flush))
def init(force: bool = False):
return TestRun.executor.run(ctl_init(force))