Files
hakorune/e2e_test_error.txt
Moe Charm d6529b477b test: Add comprehensive E2E tests for unified registry system
- Add reserved name guard test to prevent non-builtin factories from hijacking builtin names
- Add Handle TLV encoding/decoding test for FileBox copyFrom method
- Add CounterBox plugin tests for inc/get operations and clone/share behavior
- All unified registry E2E tests passing 

統一レジストリシステムの包括的なE2Eテスト追加
- ビルトイン名保護テスト
- Handle型TLVエンコーディングテスト
- CounterBoxプラグインテスト
- 全テスト成功確認

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-21 16:46:07 +09:00

31 lines
1.1 KiB
Plaintext

NEW ERROR AFTER FIX:
running 2 tests
test e2e_create_echo_box_and_return_string ... FAILED
test e2e_create_adder_box_and_return_sum ... FAILED
failures:
---- e2e_create_echo_box_and_return_string stdout ----
❌ Interpreter error: Return outside of function
thread 'e2e_create_echo_box_and_return_string' panicked at tests/e2e_plugin_echo.rs:102:33:
exec ok: ReturnOutsideFunction
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
---- e2e_create_adder_box_and_return_sum stdout ----
❌ Interpreter error: Return outside of function
thread 'e2e_create_adder_box_and_return_sum' panicked at tests/e2e_plugin_echo.rs:114:33:
exec ok: ReturnOutsideFunction
failures:
e2e_create_adder_box_and_return_sum
e2e_create_echo_box_and_return_string
test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.08s
PROGRESS: The Box types (EchoBox, AdderBox) are now recognized!
The error changed from "Unknown Box type" to "Return outside of function".
This suggests the unified registry is working correctly after ChatGPT5's fix.