#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2014-2019, Intel Corporation

#
# src/test/pmem_map_file/TEST0 -- unit test for pmem_map_file
#

. ../unittest/unittest.sh

require_test_type medium

require_fs_type any

configure_valgrind memcheck force-disable

setup

# this test invokes sigsegvs by design
export ASAN_OPTIONS=handle_segv=0

truncate -s 2G $DIR/testfile1

# <path> <size> <flags> <mode> <use_mlen> <use_is_pmem> <err_code>

expect_normal_exit ./pmem_map_file$EXESUFFIX \
    $DIR/testfile1 0 - 0 1 1 0 \
    $DIR/testfile1 -1 - 0 1 1 0 \
    $DIR/testfile1 0 - 0 0 0 0 \
    $DIR/testfile1 0 X 0 0 0 0 \
    $DIR/testfile1 0 - 0644 1 1 0 \
    $DIR/testfile1 1024 - 0 1 1 0 \
    $DIR/testfile1 0 C 0 1 1 0 \
    $DIR/testfile1 0 E 0 1 1 0 \
    $DIR/testfile1 4096 T 0644 1 1 0 \
    $DIR/testfile1 4096 E 0644 1 1 0 \
    $DIR/testfile1 0 - 0644 1 1 0 \
    $DIR/testfile1 4096 C 0644 1 1 0 \
    $DIR/testfile1 8192 C 0644 1 1 0 \
    $DIR/testfile1 4096 CS 0644 1 1 0

check_files $DIR/testfile1

check

pass
