This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
el-retired/docs/v1/experiments/evidence/cycles/07-invocation-is-not-composable/0046-seam_binding-tally-history.out
T
will d3495476f4
El SDK Release / build-and-release (push) Failing after 13m0s
kill: purge old-paradigm dist/platform binaries from tree
The generated C, amalgams, vendored runtime pins, and compiled binaries
from the Claude Code era are removed from the worktree. The El sources
survive; this tree is now source-only for the first-principles rebuild.

Per Principal direction 2026-08-19.
2026-08-19 19:46:15 -05:00

31 lines
1.5 KiB
Plaintext

== diff of the harness, bc2f26d^ -> bc2f26d ==
diff --git a/lang/tests/integration/seam_binding.sh b/lang/tests/integration/seam_binding.sh
index 20e85046..58e28c61 100755
--- a/lang/tests/integration/seam_binding.sh
+++ b/lang/tests/integration/seam_binding.sh
@@ -83,10 +83,15 @@ check "two constructs compose on one crossing" \
SEEN work/b
7" "$(cd "$WORK" && EL_CONSTRUCTS=two.txt ./prog 2>&1)"
+cat >> "$WORK/targets.c" <<'TGT'
+el_val_t thrice(el_val_t fn, el_val_t con, el_val_t (*b)(void*), void* e){
+ (void)fn; (void)con; return b(e) + b(e) + b(e); /* wrap: invoke N times */
+}
+TGT
printf 'work doubler exit double_result\n' > "$WORK/exit.txt"
check "an EXIT construct declared after the build replaces the result" \
"14" "$(cd "$WORK" && EL_CONSTRUCTS=exit.txt ./prog 2>&1)"
echo
-echo " 7 assertions, $((6-FAILS)) passed, $FAILS failed"
+echo " 7 assertions, $((7-FAILS)) passed, $FAILS failed"
exit $FAILS
== the summary line at every commit where the harness exists ==
8bbb750c2 check-calls=6 84:echo " 6 assertions, $((6-FAILS)) passed, $FAILS failed"
24f7fb514 check-calls=6 84:echo " 6 assertions, $((6-FAILS)) passed, $FAILS failed"
285166c25 check-calls=7 91:echo " 7 assertions, $((6-FAILS)) passed, $FAILS failed"
b40754f07 check-calls=7 91:echo " 7 assertions, $((6-FAILS)) passed, $FAILS failed"
bc2f26ddf check-calls=7 96:echo " 7 assertions, $((7-FAILS)) passed, $FAILS failed"
c04d68f9c check-calls=7 96:echo " 7 assertions, $((7-FAILS)) passed, $FAILS failed"