#!../../../../../../common/bats/bin/bats 
# -*-sh-*-

source ../../../../../../common/test_helper_functions.bash || exit 1
source ../../../../../../common/functions || exit 1

if [ -s ../../../../../../TEST_ENV ];then
    source ../../../../../../TEST_ENV
fi

check_rms
rm=$RESOURCE_MANAGER

PKG="Boost"

@test "[$PKG] regress under resource manager ($rm/$LMOD_FAMILY_COMPILER)" {
    test=regress
    if [ ! -x $test ];then
        flunk "$test does not exist"
    fi
    run_serial_binary ./$test
    assert_success
}

