chore: remove dead scripts, tests, and stale gitignore entries#19
Merged
Conversation
Clean up maintenance artifacts that have outlived their purpose: - tests/: test_shadow_calc.c no longer links (calculate_shadow_bias is now static); test_shadow_config binary is an orphan with no source; baselines/metadata.json captured pre-refactor snapshot that is no longer relevant - scripts/: remove one-off validators tied to archived specs (012 cleanup, 013 norminette, BVH integration fix), superseded helpers (create_wiki.sh replaced by .github/scripts/sync-wiki.sh), norm-violating tooling (fix_whitespace.sh converted tabs to spaces), and scripts with broken references (fix_line_continuations.sh) - scripts/test/: all three scripts dead (hardcoded macOS path in test_progress.sh, outdated spec 002 validation) - .gitignore: drop patterns for test binaries that never existed (test_vector, test_parser, test_mlx, etc.) and the removed test_optimizations.sh script Remaining in scripts/: validate_norminette.sh, test_miniRT.sh, test_scenes.sh, bench.sh — all referenced in AGENTS.md and wiki. Co-Authored-By: Claude <noreply@anthropic.com>
32 tasks
gdtknight
added a commit
that referenced
this pull request
Apr 17, 2026
README was stuck at v2.6.0 and docs/CHANGELOG.md at v2.4.0, both missing the accumulated release history from the package restructuring work. - README: rewrite the project structure tree to reflect the 7-package feature-based layout introduced in v2.8.0 (common, scene, spatial, render, lighting, interact, metrics), replacing the stale flat layout. Extend the release history table with entries for v2.4.1, v2.5.0, v2.5.1, v2.6.0, v2.6.1, v2.6.2, v2.7.0, v2.8.0, and v2.8.1. - CHANGELOG: add full Keep-a-Changelog entries for v2.4.1 through v2.8.1, including the module restructurings, header cleanups, camera pitch fix, and the v2.8.1 maintenance cleanup (PRs #19, #20). Pure documentation update — no source or build changes. Co-Authored-By: Claude <noreply@anthropic.com>
32 tasks
gdtknight
added a commit
that referenced
this pull request
Apr 17, 2026
README was stuck at v2.6.0 and docs/CHANGELOG.md at v2.4.0, both missing the accumulated release history from the package restructuring work. - README: rewrite the project structure tree to reflect the 7-package feature-based layout introduced in v2.8.0 (common, scene, spatial, render, lighting, interact, metrics), replacing the stale flat layout. Extend the release history table with entries for v2.4.1, v2.5.0, v2.5.1, v2.6.0, v2.6.1, v2.6.2, v2.7.0, v2.8.0, and v2.8.1. - CHANGELOG: add full Keep-a-Changelog entries for v2.4.1 through v2.8.1, including the module restructurings, header cleanups, camera pitch fix, and the v2.8.1 maintenance cleanup (PRs #19, #20). Pure documentation update — no source or build changes. Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
tests/,scripts/,.gitignore에서 수명이 다한 유지보수 아티팩트를 정리합니다. 소스 코드 변경 없이 삭제만 있는 PR이므로 빌드·렌더 동작은 영향받지 않습니다.Related Issue
Type of Change
Changes
test_shadow_calc.c는 테스트 대상calculate_shadow_bias가static으로 전환된 이후 링크 불가.test_shadow_config는 소스 없는 고아 바이너리.baselines/metadata.json은 종료된 016-compliance-refactoring 스냅샷.fix_whitespace.sh, 존재하지 않는 경로를 참조하는fix_line_continuations.sh,.github/scripts/sync-wiki.sh로 대체된create_wiki.sh, macOS 절대경로가 하드코딩된scripts/test/test_progress.sh등.test_vector,test_parser,test_intersections,test_lighting,test_mlx)과 삭제된test_optimizations.sh항목 제거.scripts/validate_norminette.sh,scripts/test_miniRT.sh,scripts/test_scenes.sh,scripts/bench.sh. 모두AGENTS.md와wiki/빌드-및-실행.md에서 현재 참조 중.Testing
Test Environment
Test Steps
make fclean && make all— 전체 재빌드 성공 확인./miniRT scenes/valid/valid_smoke_simple.rt구동 (시각 검증)AGENTS.md,wiki/빌드-및-실행.md에서 가리키는 4개 스크립트가 실제로 존재하는지ls scripts/로 검증Test Results
Screenshots
Checklist
Constitution Compliance
Performance Impact
Additional Notes
tests/디렉토리가 통째로 사라지므로 향후 유닛 테스트를 재도입할 경우 새로운 빌드 타겟(예: Makefiletest규칙)과 함께 구조를 재설계하는 것이 좋습니다.🤖 Generated with Claude Code