uatomic/x86: Remove redundant memory barriers
[urcu.git] / tests / benchmark / runtests.sh
index 781e8f7f7e32d735e16430280d21b12448a24706..761a5476b5c0f2f6db614624b94e9f585c04a7df 100755 (executable)
@@ -1,35 +1,38 @@
-#!/bin/bash
+#!/usr/bin/env bash
+#
+# SPDX-License-Identifier: GPL-2.0-only
+#
+# SPDX-FileCopyrightText: 2022 EfficiOS Inc.
+#
+
+if [ "x${URCU_TESTS_SRCDIR:-}" != "x" ]; then
+       UTILSSH="$URCU_TESTS_SRCDIR/utils/utils.sh"
+else
+       UTILSSH="$(dirname "$0")/../utils/utils.sh"
+fi
 
-source ../utils/tap.sh
+# Enable TAP
+SH_TAP=1
 
-NUM_TESTS=15
+# shellcheck source=../utils/utils.sh
+source "$UTILSSH"
 
-plan_tests     ${NUM_TESTS}
 
-. ./common.sh
+# Create a temporary file for tests output
+TMPFILE=$(mktemp)
 
-function cleanup()
-{
-       if [ x"$tmpfile" != x"" ]; then
-               rm -f $tmpfile
-       fi
-}
+# Set trap to delete the temporary file on exit and call tap.sh '_exit'
+trap 'rm -f "$TMPFILE"; _exit' EXIT
 
-tmpfile=
-trap cleanup SIGINT SIGTERM EXIT
-tmpfile=$(mktemp)
 
-# Check if time bin is non-empty
-if [ -n "$test_time_bin" ]; then
-       time_command="$test_time_bin"
-else
-       time_command=""
-fi
+NUM_TESTS=12
+
+plan_tests     ${NUM_TESTS}
 
-for a in test_urcu_gc test_urcu_signal_gc test_urcu_mb_gc test_urcu_qsbr_gc \
-       test_urcu_lgc test_urcu_signal_lgc test_urcu_mb_lgc test_urcu_qsbr_lgc \
-       test_urcu test_urcu_signal test_urcu_mb test_urcu_qsbr \
+for a in test_urcu_gc test_urcu_mb_gc test_urcu_qsbr_gc \
+       test_urcu_lgc test_urcu_mb_lgc test_urcu_qsbr_lgc \
+       test_urcu test_urcu_mb test_urcu_qsbr \
        test_rwlock test_perthreadlock test_mutex; do
-       okx $time_command -o $tmpfile ./${a} $*
-       diag "time: $(cat $tmpfile)"
+       okx ${URCU_TESTS_TIME_BIN} "$URCU_TESTS_BUILDDIR/benchmark/${a}" "$@" 2>"${TMPFILE}"
+       diag "time: $(cat "${TMPFILE}")"
 done
This page took 0.023029 seconds and 4 git commands to generate.