2018-11-02 00:00:24 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-11-02 15:49:40 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2018 Intel Corporation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
2018-11-02 00:00:24 +00:00
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
|
2019-12-05 20:07:44 +00:00
|
|
|
run_test "ocf_fio_modes" "$testdir/integrity/fio-modes.sh"
|
|
|
|
run_test "ocf_bdevperf_iotypes" "$testdir/integrity/bdevperf-iotypes.sh"
|
|
|
|
run_test "ocf_stats" "$testdir/integrity/stats.sh"
|
2021-07-23 22:23:26 +00:00
|
|
|
run_test "ocf_flush" "$testdir/integrity/flush.sh"
|
2019-12-05 20:07:44 +00:00
|
|
|
run_test "ocf_create_destruct" "$testdir/management/create-destruct.sh"
|
|
|
|
run_test "ocf_multicore" "$testdir/management/multicore.sh"
|
2020-07-28 14:43:06 +00:00
|
|
|
run_test "ocf_persistent_metadata" "$testdir/management/persistent-metadata.sh"
|
2019-12-05 20:07:44 +00:00
|
|
|
run_test "ocf_remove" "$testdir/management/remove.sh"
|
2021-02-21 04:25:32 +00:00
|
|
|
run_test "ocf_configuration_change" "$testdir/management/configuration-change.sh"
|