Improved test framework
[urcu.git] / tests / benchmark / runtests-batch.sh
CommitLineData
ad460058 1#!/bin/bash
de6cb9d5
MJ
2#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5# SPDX-FileCopyrightText: 2022 EfficiOS Inc.
6#
7
8if [ "x${URCU_TESTS_SRCDIR:-}" != "x" ]; then
9 UTILSSH="$URCU_TESTS_SRCDIR/utils/utils.sh"
10else
11 UTILSSH="$(dirname "$0")/../utils/utils.sh"
12fi
13
14# Enable TAP
15SH_TAP=1
16
17# shellcheck source=../utils/utils.sh
18source "$UTILSSH"
19
20
21# Create a temporary file for tests output
22TMPFILE=$(mktemp)
23
24# Set trap to delete the temporary file on exit and call tap.sh '_exit'
25trap 'rm -f "$TMPFILE"; _exit' EXIT
ad460058 26
ad460058
MD
27
28NUM_TESTS=1
29
30plan_tests ${NUM_TESTS}
a813abf8 31
f8cbb9da 32#for a in test_urcu_gc test_urcu_gc_mb test_urcu_qsbr_gc; do
657a89f1 33for a in test_urcu_gc; do
de6cb9d5 34 okx "${URCU_TESTS_TIME_BIN}" "${URCU_TESTS_BUILDDIR}/benchmark/${a}" "$@" 2>"${TMPFILE}"
748f9af1 35 diag "time: $(cat "${TMPFILE}")"
a813abf8 36done
This page took 0.043096 seconds and 4 git commands to generate.