
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
27 lines
999 B
Bash
27 lines
999 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Copyright(c) 2012-2021 Intel Corporation
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
# This is the local config file which may be used to override default settings.
|
|
# If you want to use this file, rename it to "cas_local_config".
|
|
|
|
# Default core and cache devices - note that we require whole devices, not partitions
|
|
export CORE_DEVICE="/dev/disk/by-id/ata-SUPER_SPEED_DISK_SSD"
|
|
export CACHE_DEVICE="/dev/disk/by-id/nvme-BETTER_SSD_KINGOFSSDS"
|
|
|
|
# Default size of partition for cache/core device. This is used only for
|
|
# the DEFAULT_* API functions
|
|
export DEFAULT_CACHE_SIZE="3000M"
|
|
export DEFAULT_CORE_SIZE="5000M"
|
|
|
|
# All devices mounted using the test API will be mounted at ${MOUNTPOINT}-${CACHE_ID}-${CORE_ID}
|
|
# Use this variable in your tests to use the mounted resource.
|
|
export MOUNTPOINT="/mnt/cas"
|
|
|
|
# TMP_DIR should be a directory where we can store additional data like test files, md5 sums etc.
|
|
# We clean up this directory between the tests.
|
|
export TMP_DIR="/var/tmp/.cas"
|