[DTrace-devel] [PATCH] test: remove .x files due to aarch64 kernel fixes for arg8 and arg9

eugene.loh at oracle.com eugene.loh at oracle.com
Sat Feb 25 04:37:06 UTC 2023


From: Eugene Loh <eugene.loh at oracle.com>

The .x files, apparently needed due to kernel bugs, are no longer
needed with updated kernels.

Signed-off-by: Eugene Loh <eugene.loh at oracle.com>
---
 test/unittest/pid/tst.args1.aarch64.x     | 16 ----------------
 test/unittest/usdt/tst.args-alt.aarch64.x | 16 ----------------
 2 files changed, 32 deletions(-)
 delete mode 100755 test/unittest/pid/tst.args1.aarch64.x
 delete mode 100755 test/unittest/usdt/tst.args-alt.aarch64.x

diff --git a/test/unittest/pid/tst.args1.aarch64.x b/test/unittest/pid/tst.args1.aarch64.x
deleted file mode 100755
index 17558bae..00000000
--- a/test/unittest/pid/tst.args1.aarch64.x
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-read MAJOR MINOR <<< `uname -r | grep -Eo '^[0-9]+\.[0-9]+' | tr '.' ' '`
-
-if [ $MAJOR -gt 5 ]; then
-	exit 0
-fi
-if [ $MAJOR -eq 5 -a $MINOR -gt 4 ]; then
-	exit 0
-fi
-
-# Technically, Linux 5.4 should also work, but there seem to be problems with
-# UEK6.
-
-echo "pid entry probes have bad arg8/arg9 on pre-5.5 kernels on ARM"
-exit 1
diff --git a/test/unittest/usdt/tst.args-alt.aarch64.x b/test/unittest/usdt/tst.args-alt.aarch64.x
deleted file mode 100755
index ac986d06..00000000
--- a/test/unittest/usdt/tst.args-alt.aarch64.x
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-read MAJOR MINOR <<< `uname -r | grep -Eo '^[0-9]+\.[0-9]+' | tr '.' ' '`
-
-if [ $MAJOR -gt 5 ]; then
-	exit 0
-fi
-if [ $MAJOR -eq 5 -a $MINOR -gt 4 ]; then
-	exit 0
-fi
-
-# Technically, Linux 5.4 should also work, but there seem to be problems with
-# UEK6.
-
-echo "usdt probes have bad arg8/arg9 on pre-5.5 kernels on ARM"
-exit 1
-- 
2.18.4




More information about the DTrace-devel mailing list