From c21825bcaf3b3efb123a00f2b8cd9fb2c1ea89cb Mon Sep 17 00:00:00 2001 From: Jiri Olsa Date: Fri, 16 Feb 2024 13:19:15 +0000 Subject: [PATCH] tetragon: Rename killer-tester to enforcer-tester Renaming killer-tester to enforcer-tester. Signed-off-by: Jiri Olsa --- contrib/tester-progs/Makefile | 8 ++++---- .../tester-progs/{killer-tester.c => enforcer-tester.c} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename contrib/tester-progs/{killer-tester.c => enforcer-tester.c} (100%) diff --git a/contrib/tester-progs/Makefile b/contrib/tester-progs/Makefile index 4b5ecbe33b9..77ff318a6eb 100644 --- a/contrib/tester-progs/Makefile +++ b/contrib/tester-progs/Makefile @@ -18,16 +18,16 @@ PROGS = sigkill-tester \ threads-tester \ bench-reader \ threads-exit \ - killer-tester \ + enforcer-tester \ drop-privileges \ getcpu \ direct-write-tester \ change-capabilities -# For now killer-tester is compiled to 32-bit only on x86_64 as we want +# For now enforcer-tester is compiled to 32-bit only on x86_64 as we want # to test 32-bit binaries and system calls compatibility layer. ifeq ($(shell uname -m),x86_64) - PROGS += killer-tester-32 + PROGS += enforcer-tester-32 endif all: $(PROGS) @@ -79,7 +79,7 @@ uprobe-test-2: uprobe-test-1 # -m32 is an x86_64 flag. # NB(kkourt) we compile this as static to avoid the need for ia32 libs in VMs -killer-tester-32: killer-tester.c +enforcer-tester-32: enforcer-tester.c $(GCC) -Wall -m32 -static $< -o $@ lseek-pipe: FORCE diff --git a/contrib/tester-progs/killer-tester.c b/contrib/tester-progs/enforcer-tester.c similarity index 100% rename from contrib/tester-progs/killer-tester.c rename to contrib/tester-progs/enforcer-tester.c