From 218913eb16b0388b19771765bfd121214db503be Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Fri, 15 May 2026 15:21:50 +0900 Subject: [PATCH] build: wire test_use_promote_alias MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 699 test source landed with the SK_USE→SK_X promotion fix in 7f60ebb but Makefile wiring was deferred so it wouldn't collide with parallel fnmatch + cgreturn WIP. Tree is clear; wiring it now. make test: 57/57. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index e18e004d..72b7f1e4 100644 --- a/Makefile +++ b/Makefile @@ -227,6 +227,7 @@ TESTS = $(BIN)/test_smoke $(BIN)/test_lex $(BIN)/test_parse $(BIN)/test_check \ $(BIN)/test_modtype_leaf_collision \ $(BIN)/test_samemod_prefer \ $(BIN)/test_cgreturn_struct \ + $(BIN)/test_use_promote_alias \ $(BIN)/test_field_signed $(BIN)/test_frame_argcount \ $(BIN)/test_selfhost $(BIN)/test_w6a_ww $(BIN)/test_w6l_ww \ $(BIN)/test_w6c_ww $(BIN)/test_ww_ww $(BIN)/test_self_rebuild \ @@ -372,6 +373,11 @@ $(BIN)/test_cgreturn_struct: test/wcc/698_cgreturn_struct.c \ $(LIB)/libwwrt.a | $(BIN) $(CC) $(CFLAGS) -o $@ $< +$(BIN)/test_use_promote_alias: test/wcc/699_use_promote_alias.c \ + $(BIN)/ww $(BIN)/w6c $(BIN)/w6a $(BIN)/w6l \ + $(LIB)/libwwrt.a | $(BIN) + $(CC) $(CFLAGS) -o $@ $< + $(BIN)/test_field_signed: test/wcc/660_field_signed.c $(BIN)/ww \ $(BIN)/w6c $(BIN)/w6a $(BIN)/w6l \ $(BIN)/ww_ww $(BIN)/w6c_ww $(BIN)/w6a_ww $(BIN)/w6l_ww \