Step 66 TDD test: Cross-language memory projection

Tests Lossless Projection Logic: Python @Reclaim(Tracing)->C++ shared_ptr,
C++ @Deallocate(Explicit)->Python wrapper, @Owner(Single) preserved in
Python metadata, round-trip annotation preservation, @Lifetime(RAII)->
unique_ptr. Defines CrossLanguageProjector interface.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:29:33 -07:00
parent 52b59428f2
commit 1a1416472b
2 changed files with 207 additions and 0 deletions

View File

@@ -187,6 +187,9 @@ target_include_directories(step64_test PRIVATE src)
add_executable(step65_test tests/step65_test.cpp)
target_include_directories(step65_test PRIVATE src)
add_executable(step66_test tests/step66_test.cpp)
target_include_directories(step66_test PRIVATE src)
add_executable(whetstone_editor src/main.cpp)
target_include_directories(whetstone_editor PRIVATE src)
# find_package(SDL2 REQUIRED) # Commented out for now to avoid build issues