From f44de98b7e3aae41c36a333eb9c0eecb0101f4fe Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 18 Jan 2026 18:48:17 +0100 Subject: [PATCH] update paths to fail binaries --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 38ba861..d0f8ab5 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,14 @@ ARCH ?= bochs all: help BUILD_DIR := build-${ARCH} -FAIL_BIN ?= ${BUILD_DIR}/bin +FAIL_BIN ?= /home/fail/bin FAIL_SERVER ?= ${FAIL_BIN}/generic-experiment-server -FAIL_TRACE ?= ${FAIL_BIN}/fail-generic-tracing -FAIL_INJECT ?= ${FAIL_BIN}/fail-generic-experiment -FAIL_IMPORT ?= ${FAIL_BIN}/import-trace --enable-sanitychecks +FAIL_TRACE ?= ${FAIL_BIN}/generic-tracing-client +# FAIL_INJECT ?= ${FAIL_BIN}/fail-generic-experiment +FAIL_INJECT ?= ${FAIL_BIN}/generic-experiment-client +FAIL_IMPORT ?= ${FAIL_BIN}/import-trace --enable-sanitychecks FAIL_PRUNE ?= ${FAIL_BIN}/prune-trace -BOCHS_RUNNER ?= ${FAIL_BIN}/bochs-experiment-runner +BOCHS_RUNNER ?= ${FAIL_BIN}/bochs-experiment-runner.py EXPERIMENTS := $(patsubst %.c,%,$(shell echo *.c)) @@ -25,8 +26,8 @@ help: @echo "Small Playground for FAIL* Injections" @echo "-------------------------------------" @echo "Architecture Unspecific Targets:" - @echo " \e[3mdocker\e[0m Start a Docker container with all dependencies" - @echo " \e[3mdownload\e[0m Download Precompiled FAIL* client" + @echo " docker Start a Docker container with all dependencies" + @echo " download Download Precompiled FAIL* client" @echo "" @echo "Current Configuartion" @echo " ARCH=${ARCH}"