fix: handle EINTR correctly in get_cpu_mask_from_sysfs
[urcu.git] / tests / benchmark / common.sh
diff --git a/tests/benchmark/common.sh b/tests/benchmark/common.sh
deleted file mode 100755 (executable)
index 1f5f07f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# This file is meant to be sourced from other tests scripts.
-#
-
-if [ -x "$URCU_TEST_TIME_BIN" ]; then
-       test_time_bin="$URCU_TEST_TIME_BIN"
-elif [ -x "/usr/bin/time" ]; then
-       test_time_bin="/usr/bin/time"
-else
-       test_time_bin=""
-fi
-
-function cleanup()
-{
-        if [ x"$tmpfile" != x"" ]; then
-                rm -f $tmpfile
-        fi
-}
-
-function xseq () {
-       i=$1
-       while [[ "$i" -le "$2" ]]; do
-               echo "$i"
-               i=$(expr $i + 1)
-       done
-}
This page took 0.02325 seconds and 4 git commands to generate.