update paths to fail binaries

This commit is contained in:
2026-01-18 18:48:17 +01:00
parent 889de30df9
commit f44de98b7e

View File

@ -5,13 +5,14 @@ ARCH ?= bochs
all: help all: help
BUILD_DIR := build-${ARCH} BUILD_DIR := build-${ARCH}
FAIL_BIN ?= ${BUILD_DIR}/bin FAIL_BIN ?= /home/fail/bin
FAIL_SERVER ?= ${FAIL_BIN}/generic-experiment-server FAIL_SERVER ?= ${FAIL_BIN}/generic-experiment-server
FAIL_TRACE ?= ${FAIL_BIN}/fail-generic-tracing FAIL_TRACE ?= ${FAIL_BIN}/generic-tracing-client
FAIL_INJECT ?= ${FAIL_BIN}/fail-generic-experiment # FAIL_INJECT ?= ${FAIL_BIN}/fail-generic-experiment
FAIL_INJECT ?= ${FAIL_BIN}/generic-experiment-client
FAIL_IMPORT ?= ${FAIL_BIN}/import-trace --enable-sanitychecks FAIL_IMPORT ?= ${FAIL_BIN}/import-trace --enable-sanitychecks
FAIL_PRUNE ?= ${FAIL_BIN}/prune-trace 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)) EXPERIMENTS := $(patsubst %.c,%,$(shell echo *.c))
@ -25,8 +26,8 @@ help:
@echo "Small Playground for FAIL* Injections" @echo "Small Playground for FAIL* Injections"
@echo "-------------------------------------" @echo "-------------------------------------"
@echo "Architecture Unspecific Targets:" @echo "Architecture Unspecific Targets:"
@echo " \e[3mdocker\e[0m Start a Docker container with all dependencies" @echo " docker Start a Docker container with all dependencies"
@echo " \e[3mdownload\e[0m Download Precompiled FAIL* client" @echo " download Download Precompiled FAIL* client"
@echo "" @echo ""
@echo "Current Configuartion" @echo "Current Configuartion"
@echo " ARCH=${ARCH}" @echo " ARCH=${ARCH}"