aboutsummaryrefslogtreecommitdiff
path: root/test/performance/odp_crypto_run.sh
blob: fcb7435fd3fa0d69f2e6413ec10f8af1799bb167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2022 Nokia
#

TEST_DIR="${TEST_DIR:-$(dirname $0)}"

# Run with a small number of iterations in make check

$TEST_DIR/odp_crypto${EXEEXT} -i 100

if [ $? -ne 0 ] ; then
    echo Test FAILED
    exit 1
fi

exit 0