From ec7e8af6e9c73936a83d23acd1c647680c157e64 Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Fri, 5 Jun 2026 03:00:08 +0900 Subject: [PATCH] Makefile: wire 953_arrlit_slice_run (committed unwired at bf1037d) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test .c landed with the #25/#31 fix but its $(BIN)/test_arrlit_slice_run target was never added, so the runner SKIPped it on every `make test` since — while it still counted toward "all N tests passed". Wiring per the 953_arraytoslice_run pattern; the test passes 13/13 at HEAD (cstage run + cs==ww byte-id + reject rows). The runner-side hole that let an unwired test skip silently into the pass count is closed in the follow-up commit. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 66ffde00..be215095 100644 --- a/Makefile +++ b/Makefile @@ -441,6 +441,7 @@ TESTS = $(BIN)/test_smoke $(BIN)/test_lex $(BIN)/test_parse $(BIN)/test_check \ $(BIN)/test_dotbase_addr_slice_run \ $(BIN)/test_structlit_arrfield_run \ $(BIN)/test_arraytoslice_run \ + $(BIN)/test_arrlit_slice_run \ $(BIN)/test_valstruct_subsize_run \ $(BIN)/test_aggret_source_run \ $(BIN)/test_continue_run \ @@ -1935,6 +1936,11 @@ $(BIN)/test_arraytoslice_run: test/wcc/953_arraytoslice_run.c \ $(LIB)/libwwrt.a | $(BIN) $(CC) $(CFLAGS) -o $@ $< +$(BIN)/test_arrlit_slice_run: test/wcc/953_arrlit_slice_run.c \ + $(BIN)/ww $(BIN)/w6c $(BIN)/w6c_ww $(BIN)/w6a $(BIN)/w6l \ + $(LIB)/libwwrt.a | $(BIN) + $(CC) $(CFLAGS) -o $@ $< + $(BIN)/test_valstruct_subsize_run: test/wcc/949_valstruct_subsize_run.c \ $(BIN)/ww $(BIN)/w6c $(BIN)/w6c_ww $(BIN)/w6a $(BIN)/w6l \ $(LIB)/libwwrt.a | $(BIN)