2018-08-30 11:05:39 +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-08-30 11:05:39 +00:00
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
|
2018-10-22 09:27:09 +00:00
|
|
|
$rootdir/test/rpc_client/rpc_client_test
|
2018-08-30 11:05:39 +00:00
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|