From 85a483875b66a9008e8e898660a99746dfa72b67 Mon Sep 17 00:00:00 2001 From: mrciffa <49000955+davide221@users.noreply.github.com> Date: Thu, 24 Sep 2026 13:00:41 +0200 Subject: [PATCH] fix(harness): pass LUCE_SERVER_BIN in the omp launcher test #603 added test_run_omp_config.sh before the dflash -> luce engine rename and merged main without textual conflict, so the test still set DFLASH_SERVER_BIN. common.sh now reads LUCE_SERVER_BIN, ignored the fake server and fell back to $REPO_DIR/server/build/luce_server, which does not exist, failing server_unit_omp_harness_config on main. Co-Authored-By: Claude Opus 5.5 (1M context) --- harness/tests/test_run_omp_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/harness/tests/test_run_omp_config.sh b/harness/tests/test_run_omp_config.sh index 206aa0973..b2274387f 100755 --- a/harness/tests/test_run_omp_config.sh +++ b/harness/tests/test_run_omp_config.sh @@ -9,7 +9,7 @@ trap 'rm -rf "$TMP_DIR"' EXIT FAKE_BIN="$TMP_DIR/bin" FAKE_TARGET="$TMP_DIR/model.gguf" FAKE_DRAFT="$TMP_DIR/draft.gguf" -FAKE_SERVER="$TMP_DIR/dflash_server" +FAKE_SERVER="$TMP_DIR/luce_server" FAKE_OMP="$TMP_DIR/omp" FAKE_REPO="$TMP_DIR/repo" mkdir -p "$FAKE_BIN" "$FAKE_REPO" @@ -59,7 +59,7 @@ env \ TARGET="$FAKE_TARGET" \ DRAFT="$FAKE_DRAFT" \ FA_WINDOW=1 \ - DFLASH_SERVER_BIN="$FAKE_SERVER" \ + LUCE_SERVER_BIN="$FAKE_SERVER" \ OMP_BIN="$FAKE_OMP" \ AUTO_INSTALL_CLIENTS=0 \ OMP_ARGS_CAPTURE="$ARGS_CAPTURE" \