Fix MakeFileBody/MakeFileProvider tests on Windows

These tests wrote to a hardcoded "/tmp/" path which does not exist on
Windows, causing the file write to silently fail and the subsequent
make_file_body / make_file_provider call to return zero-sized data.
Use a relative path under the test working directory instead so the
test runs identically on every platform.

Also dump the shard log when a shard's process exits non-zero even
when the gtest summary appears clean (e.g. sanitizer report after
the suite, or assertion-based abort) — previously such failures were
detected only via overall rc and showed no diagnostic output.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
yhirose
2026-04-29 07:33:51 +09:00
parent b0866cff8f
commit f50bd311fb
2 changed files with 10 additions and 8 deletions

View File

@@ -74,22 +74,24 @@ define run_parallel
$(SETARCH) ./$(1) --gtest_color=yes > $(1)_shard_$$i.log 2>&1 & \
pids="$$pids $$!"; \
done; \
rc=0; \
exits=""; \
for pid in $$pids; do \
if ! wait $$pid; then rc=1; fi; \
wait $$pid; exits="$$exits $$?"; \
done; \
for i in $$(seq 0 $$(($(SHARDS) - 1))); do \
i=0; \
for ec in $$exits; do \
log=$(1)_shard_$$i.log; \
if grep -q "\[ PASSED \]" $$log && ! grep -q "\[ FAILED \]" $$log; then \
if grep -q "\[ PASSED \]" $$log && ! grep -q "\[ FAILED \]" $$log && [ $$ec -eq 0 ]; then \
passed=$$(grep "\[ PASSED \]" $$log); \
echo "Shard $$i: $$passed"; \
else \
echo "=== Shard $$i FAILED ==="; \
echo "=== Shard $$i FAILED (exit=$$ec) ==="; \
cat $$log; \
fail=1; \
fi; \
i=$$((i+1)); \
done; \
if [ $$fail -ne 0 ] || [ $$rc -ne 0 ]; then exit 1; fi; \
if [ $$fail -ne 0 ]; then exit 1; fi; \
echo "All shards passed."
endef