Archived
kill: purge old-paradigm dist/platform binaries from tree
El SDK Release / build-and-release (push) Failing after 13m0s
El SDK Release / build-and-release (push) Failing after 13m0s
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.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
bash -c cd lang; SRCS=$(../scripts/el-runtime-sources.sh runtime); CF="-std=c11 -O2 -I runtime"; LF=""; for d in /opt/homebrew/opt/openssl@3 /usr/local/opt/openssl@3; do [ -d "$d" ] && CF="$CF -I $d/include" && LF="-L $d/lib"; done; LF="$LF -lcurl -lssl -lcrypto -lpthread -lm"; W=/tmp/rerun-v2-shared; ./dist/platform/elc elc-cli.el > $W/g1.c 2>/dev/null; cc $CF -o $W/elc1 $W/g1.c $SRCS $LF 2>/dev/null; $W/elc1 elc-cli.el > $W/g2.c 2>/dev/null; cc $CF -o $W/elc2 $W/g2.c $SRCS $LF 2>/dev/null; $W/elc2 elc-cli.el > $W/g3.c 2>/dev/null; printf "gen1 sha256 = %s\ngen2 sha256 = %s\ngen3 sha256 = %s\n" "$(shasum -a 256 $W/g1.c | cut -d\ -f1)" "$(shasum -a 256 $W/g2.c | cut -d\ -f1)" "$(shasum -a 256 $W/g3.c | cut -d\ -f1)"; if cmp -s $W/g2.c $W/g3.c; then echo "FIXPOINT gen2 == gen3 OK"; else echo "FIXPOINT gen2 != gen3 FAILED"; fi; if cmp -s $W/g1.c $W/g2.c; then echo "note: gen1 == gen2 (codegen output unchanged this cycle)"; else echo "note: gen1 != gen2, as expected whenever codegen output changes"; fi
|
||||
@@ -0,0 +1,5 @@
|
||||
gen1 sha256 = aa340a723e7b29e585e30c07d6dc9834e072ef15a07df5e1afb363c18e168c76
|
||||
gen2 sha256 = 61210655962abd07ce395d66a9232582fd10c2a878c80f9b85fefc9081c5313e
|
||||
gen3 sha256 = 61210655962abd07ce395d66a9232582fd10c2a878c80f9b85fefc9081c5313e
|
||||
FIXPOINT gen2 == gen3 OK
|
||||
note: gen1 != gen2, as expected whenever codegen output changes
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:39Z
|
||||
exit 0
|
||||
ms 8100
|
||||
sha256_out 5960c00c43a46d19bb43edbadd8aa8ffe2e9741cc2659c89e4d42c28fecfe58a
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd lang; SRCS=$(../scripts/el-runtime-sources.sh runtime); CF="-std=c11 -O2 -I runtime"; LF=""; for d in /opt/homebrew/opt/openssl@3 /usr/local/opt/openssl@3; do [ -d "$d" ] && CF="$CF -I $d/include" && LF="-L $d/lib"; done; LF="$LF -lcurl -lssl -lcrypto -lpthread -lm"; W=/tmp/rerun-v2-shared; $W/elc2 --test tests/native/test_compiler.el > $W/t.c 2>/dev/null; cc $CF -o $W/t $W/t.c $SRCS $LF 2>/dev/null; $W/t; echo "native_suite_exit=$?"
|
||||
@@ -0,0 +1,108 @@
|
||||
ok lex-empty (0.041ms)
|
||||
ok lex-whitespace-stripped (0.001ms)
|
||||
ok lex-comment-stripped (0.000ms)
|
||||
ok lex-int-literals (0.002ms)
|
||||
ok lex-float-literals (0.010ms)
|
||||
ok lex-string-literals (0.002ms)
|
||||
ok lex-string-escape-newline (0.001ms)
|
||||
ok lex-string-escape-tab (0.001ms)
|
||||
ok lex-string-escape-backslash (0.000ms)
|
||||
ok lex-bool-literals (0.002ms)
|
||||
ok lex-identifier (0.002ms)
|
||||
ok lex-keywords (0.005ms)
|
||||
ok lex-more-keywords (0.001ms)
|
||||
ok lex-keyword-values (0.000ms)
|
||||
ok lex-arithmetic-operators (0.001ms)
|
||||
ok lex-comparison-operators (0.001ms)
|
||||
ok lex-logical-operators (0.002ms)
|
||||
ok lex-arrow-tokens (0.001ms)
|
||||
ok lex-delimiters (0.001ms)
|
||||
ok lex-double-colon (0.000ms)
|
||||
ok lex-dot-dot (0.001ms)
|
||||
ok lex-pipe-operators (0.000ms)
|
||||
ok lex-at-and-question (0.009ms)
|
||||
ok lex-eof-always-last (0.001ms)
|
||||
ok lex-string-with-spaces (0.000ms)
|
||||
ok lex-multiline-source (0.002ms)
|
||||
ok lex-flat-stride-3-layout (0.001ms)
|
||||
ok lexer-tracks-line-numbers (0.003ms)
|
||||
ok parse-let-stmt (0.025ms)
|
||||
ok parse-fn-decl (0.008ms)
|
||||
ok parse-fn-params (0.004ms)
|
||||
ok parse-return-stmt (0.002ms)
|
||||
ok parse-if-stmt (0.007ms)
|
||||
ok parse-if-else (0.006ms)
|
||||
ok parse-while-stmt (0.006ms)
|
||||
ok parse-import-stmt (0.001ms)
|
||||
ok parse-extern-fn (0.003ms)
|
||||
ok parse-let-int-value (0.002ms)
|
||||
ok parse-let-string-value (0.002ms)
|
||||
ok parse-let-bool-value (0.001ms)
|
||||
ok parse-binop-expr (0.002ms)
|
||||
ok parse-call-expr (0.004ms)
|
||||
ok parse-multiple-fns (0.005ms)
|
||||
ok parse-assign-stmt (0.003ms)
|
||||
ok parse-for-stmt (0.005ms)
|
||||
ok parse-unary-not (0.003ms)
|
||||
ok parse-unary-neg (0.003ms)
|
||||
ok parse-array-literal (0.006ms)
|
||||
ok parse-empty-array (0.003ms)
|
||||
ok parse-index-expr (0.006ms)
|
||||
ok codegen-includes (0.288ms)
|
||||
ok codegen-int-main (0.090ms)
|
||||
ok codegen-runtime-init (0.075ms)
|
||||
ok codegen-void-function-signature (0.106ms)
|
||||
ok codegen-function-with-params (0.133ms)
|
||||
ok codegen-int-literal (0.080ms)
|
||||
ok codegen-string-literal (0.062ms)
|
||||
ok codegen-if-statement (0.072ms)
|
||||
ok codegen-if-else (0.070ms)
|
||||
ok codegen-while-loop (0.115ms)
|
||||
ok codegen-let-binding (0.069ms)
|
||||
ok codegen-function-call (0.063ms)
|
||||
ok codegen-string-concat (0.068ms)
|
||||
ok codegen-int-arithmetic (0.063ms)
|
||||
ok codegen-comparison (0.062ms)
|
||||
ok codegen-string-equality (0.066ms)
|
||||
ok codegen-logical-and (0.069ms)
|
||||
ok codegen-logical-or (0.100ms)
|
||||
ok codegen-unary-not (0.068ms)
|
||||
ok codegen-string-escape-in-c (0.064ms)
|
||||
ok codegen-many-functions (0.089ms)
|
||||
ok codegen-deep-expression (0.080ms)
|
||||
ok codegen-forward-declarations (0.066ms)
|
||||
ok codegen-for-loop (0.249ms)
|
||||
ok codegen-extern-fn (0.070ms)
|
||||
ok codegen-nested-calls (0.063ms)
|
||||
ok compiler-minimal-program (0.059ms)
|
||||
ok compiler-pure-library (0.062ms)
|
||||
ok compiler-multiple-fns-with-main (0.071ms)
|
||||
ok compiler-let-in-main (0.082ms)
|
||||
ok compiler-string-concat-chain (0.077ms)
|
||||
ok compiler-negative-literal (0.060ms)
|
||||
ok compiler-stdint-include (0.054ms)
|
||||
ok decorator-undecorated-fn-has-no-beat (0.054ms)
|
||||
ok decorator-authenticate-compiles-to-nothing (0.117ms)
|
||||
ok declared-construct-name-unknown-to-codegen (0.070ms)
|
||||
ok undeclared-construct-still-injects-nothing (0.061ms)
|
||||
ok undeclared-guard-emits-nothing (0.062ms)
|
||||
ok seam-indirection-emitted-on-every-fn (0.066ms)
|
||||
ok seam-emitted-without-any-decorator (0.060ms)
|
||||
ok seam-replaces-inlined-entry-injection (0.054ms)
|
||||
ok seam-entry-is-refusable (0.053ms)
|
||||
ok seam-is-emitted-for-undecorated-fns (0.058ms)
|
||||
ok every-fn-gets-a-body-helper-and-wrapper (0.095ms)
|
||||
ok exit-crossing-goes-through-the-seam (0.063ms)
|
||||
ok early-returns-route-through-the-exit-seam (0.066ms)
|
||||
ok every-fn-gets-a-closure (0.057ms)
|
||||
ok zero-param-fn-emits-valid-c (0.057ms)
|
||||
ok compiler-no-longer-emits-prohibition-errors (0.072ms)
|
||||
ok int-returning-builtin-drives-arithmetic-dispatch (0.086ms)
|
||||
ok string-plus-string-still-concatenates (0.059ms)
|
||||
ok freed-identifiers-compile-as-identifiers (0.067ms)
|
||||
ok test-keyword-is-still-reserved (0.057ms)
|
||||
ok instant-plus-bare-int-is-refused (0.067ms)
|
||||
ok instant-plus-unit-suffix-is-allowed (0.125ms)
|
||||
|
||||
105 tests, 105 passed, 0 failed, 253 assertions in 4.589ms
|
||||
native_suite_exit=0
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:52Z
|
||||
exit 0
|
||||
ms 4078
|
||||
sha256_out 567d6f328b1801daad2fcab0adeea2a8cbfc589def13b89b454917a4717077fa
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/annotation_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,7 @@
|
||||
ok Int annotated on a String literal is caught
|
||||
ok and names the variable
|
||||
ok String annotated on an Int literal is caught
|
||||
ok correct annotations are clean
|
||||
ok the compiler's own source is clean — no false positives
|
||||
|
||||
5 assertions, 5 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:54Z
|
||||
exit 0
|
||||
ms 1615
|
||||
sha256_out fd8354898660faa4fae68be1e10dfd30326d2cc60412fb42a87b6db3d1c8dd8f
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/arity_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,9 @@
|
||||
ok the emitter does not adjudicate arity
|
||||
ok a wrong-arity call is caught
|
||||
ok the expected count is correct
|
||||
ok a correct call is clean
|
||||
ok the header yields a plausible number of signatures
|
||||
ok a wrong-arity call on a real builtin is caught
|
||||
ok and the expected count is not 0
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:54Z
|
||||
exit 0
|
||||
ms 190
|
||||
sha256_out bed0f3085439f29d1187491babba1f67167e2f3f41220303bb80168facdf5204
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/async_future.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,8 @@
|
||||
ok unbound: no construct, synchronous, correct result
|
||||
ok unbound: el_await on a non-future passes through, no crash
|
||||
ok bound: does not crash
|
||||
ok bound: the awaited result is correct
|
||||
ok bound: the caller continues BEFORE the body finishes
|
||||
ok bound: the wrap returns in under 10ms while the body takes 50ms
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:58Z
|
||||
exit 0
|
||||
ms 3499
|
||||
sha256_out ac52afda852cfe4d226b7fbe46cedbb3bc22be2b592af815e88c41a2f9d23b5d
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/capability_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,7 @@
|
||||
ok the emitter does not adjudicate
|
||||
ok a utility calling a DHARMA primitive is caught
|
||||
ok the offending fn is named
|
||||
ok a clean program exits 0
|
||||
ok editing the policy file changes enforcement, no rebuild
|
||||
|
||||
5 assertions, 5 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:58Z
|
||||
exit 0
|
||||
ms 132
|
||||
sha256_out a358a4c0b68c6f95bef05d6c7d37a0feddf41c6c9783df41c3cc0275c7b98e75
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/definitions_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,8 @@
|
||||
ok a collision across modules is caught at El level
|
||||
ok the colliding name is reported
|
||||
ok and the reason is given
|
||||
ok both source FILES are named
|
||||
ok with file-local line numbers, not combined ones
|
||||
ok a clean program exits 0
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:58Z
|
||||
exit 0
|
||||
ms 74
|
||||
sha256_out f7f5ab1979eff191df48ae3cb335c5306d95d51f40df2ab21101e8d5e087aee9
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/prohibition_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,6 @@
|
||||
ok a violation outside the boundary is caught
|
||||
ok the offending fn is named
|
||||
ok a call inside the boundary is NOT flagged
|
||||
ok a clean program exits 0
|
||||
|
||||
4 assertions, 4 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:48:58Z
|
||||
exit 0
|
||||
ms 74
|
||||
sha256_out 368db4596231e9f64a551b08afd54d98cfeb6857c06a940d465ee7178812ab80
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/seam_binding.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,9 @@
|
||||
ok unbound program is unaffected
|
||||
ok a construct declared AFTER the build applies
|
||||
ok a construct declared after the build can REFUSE
|
||||
ok an unlinked target is skipped, not fatal
|
||||
ok a binding for a different fn does not fire
|
||||
ok two constructs compose on one crossing
|
||||
ok an EXIT construct declared after the build replaces the result
|
||||
|
||||
7 assertions, 7 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:02Z
|
||||
exit 0
|
||||
ms 3466
|
||||
sha256_out 03d3e2e45ceb69b512d12b292f32e5cf7d36d10925fc8abb8f5273e83e8b6287
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/seam_caller.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,7 @@
|
||||
ok unbound: nothing is reported
|
||||
ok bound: the caller is visible
|
||||
ok bound: and it changes per call site
|
||||
ok the program still completes
|
||||
ok no fourth emission point was added
|
||||
|
||||
5 assertions, 5 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:05Z
|
||||
exit 0
|
||||
ms 3509
|
||||
sha256_out 1f53370a31a6052b27c243753991fbdbc3a10e39a5af9ca3399d1ee36f877e78
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/tagged_gate.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,12 @@
|
||||
ok an integer where a string is expected does not crash
|
||||
ok and yields the empty-string hash, not memory
|
||||
ok a NEGATIVE integer does not crash
|
||||
ok a legitimate string still hashes correctly
|
||||
ok the gate is exported, so siblings stop re-deriving it
|
||||
ok abc hashes correctly
|
||||
ok a hashes correctly
|
||||
ok hello world hashes correctly
|
||||
ok the empty string still hashes to e3b0...
|
||||
ok and no literal silently hashed as empty
|
||||
|
||||
10 assertions, 10 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:19Z
|
||||
exit 0
|
||||
ms 13622
|
||||
sha256_out 54ed74debfd5061190b7c6aaecabea13295684ac75502ce77a7a7b0e2e7778e4
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/temporal_query.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,8 @@
|
||||
ok the illegal combination is recorded, not judged, by the emitter
|
||||
ok the emitter no longer authors the message
|
||||
ok a placeholder is still emitted for the illegal expression
|
||||
ok the query judges it
|
||||
ok and explains why, from data
|
||||
ok a legal program exits 0
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:19Z
|
||||
exit 0
|
||||
ms 70
|
||||
sha256_out 436146bdf1d4fb9f140b34e4564f13e55947df21d336f3e206e79739c04a427c
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/temporal_signatures.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,6 @@
|
||||
ok an inferred Instant + Duration dispatches to the typed wrapper
|
||||
ok with no signature file, the type is unknown and it does not
|
||||
ok Instant + Instant is still refused
|
||||
ok Instant + Duration is allowed
|
||||
|
||||
4 assertions, 4 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:19Z
|
||||
exit 0
|
||||
ms 42
|
||||
sha256_out 0bd625826ed7f836523503c438bf74b1be67b7dbcc378bf9debe7b9d14cbff8f
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/unguarded_deref.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,8 @@
|
||||
ok list_join on an integer does not crash
|
||||
ok list_push_front on an integer does not crash
|
||||
ok a field access on an integer does not crash
|
||||
ok sha256_hex on an integer does not crash
|
||||
ok a legitimate list still joins
|
||||
ok the ratchet holds at or below baseline
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:36Z
|
||||
exit 0
|
||||
ms 16966
|
||||
sha256_out 6c7f1c73d0b03bd8c7fb37aedaa1ef53c06bfda070dda4d923e788f08ffb7f83
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd /Users/will/Development/neuron-technologies/foundation/el/lang && tests/integration/units_as_data.sh /tmp/rerun-v2-shared/elc2
|
||||
@@ -0,0 +1,8 @@
|
||||
ok a known unit still lowers to a DurationLit
|
||||
ok an unknown unit is NOT a duration
|
||||
ok adding it to DATA makes it syntax — no compiler change
|
||||
ok the vocabulary has ONE copy — parser holds it
|
||||
ok and codegen carries no second copy
|
||||
ok the Earth day is data, not a constant
|
||||
|
||||
6 assertions, 6 passed, 0 failed
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:36Z
|
||||
exit 0
|
||||
ms 44
|
||||
sha256_out bbffa5273b597acd20229782a7bcf619bfeb3f723ef89ad67fcc36b1ab0efbc8
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
awk { l=$0; sub(/^[ \t]+/,"",l); if (l=="") blank++; else if (substr(l,1,2)=="//") comment++; else code++ } END { printf "file=%s\ntotal_lines=%d\ncode=%d\ncomment=%d\nblank=%d\ncode_pct=%.1f%%\ncomment_pct=%.1f%%\n", FILENAME, NR, code, comment, blank, 100*code/NR, 100*comment/NR } lang/el-compiler/src/codegen.el
|
||||
@@ -0,0 +1,7 @@
|
||||
file=lang/el-compiler/src/codegen.el
|
||||
total_lines=4434
|
||||
code=3197
|
||||
comment=981
|
||||
blank=256
|
||||
code_pct=72.1%
|
||||
comment_pct=22.1%
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:49:51Z
|
||||
exit 0
|
||||
ms 14
|
||||
sha256_out 3e06f0fe32264456fe469d812acd2f15bc888c82759060c731cf606785f7ed12
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd lang; tot=0; for h in tests/integration/*.sh; do n=$(bash "$h" /tmp/rerun-v2-shared/elc2 2>&1 | grep -oE "[0-9]+ assertions" | grep -oE "[0-9]+" | head -1); tot=$((tot+${n:-0})); printf "%-24s %s\n" "$(basename $h .sh)" "${n:-0}"; done; printf "\nharnesses = %s\ntotal assertions = %s\n" "$(ls tests/integration/*.sh | wc -l | tr -d " ")" "$tot"
|
||||
@@ -0,0 +1,16 @@
|
||||
annotation_query 5
|
||||
arity_query 6
|
||||
async_future 6
|
||||
capability_query 5
|
||||
definitions_query 6
|
||||
prohibition_query 4
|
||||
seam_binding 7
|
||||
seam_caller 5
|
||||
tagged_gate 10
|
||||
temporal_query 6
|
||||
temporal_signatures 4
|
||||
unguarded_deref 6
|
||||
units_as_data 6
|
||||
|
||||
harnesses = 13
|
||||
total assertions = 76
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:50:35Z
|
||||
exit 0
|
||||
ms 44510
|
||||
sha256_out dc670c8fb09ae54116dfa262c7f0fb82cf81289aac108c87c670e715c81efabb
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c cd lang && tools/check/unguarded-deref.sh; echo "ratchet_exit=$?"
|
||||
@@ -0,0 +1,14 @@
|
||||
el_runtime.c:576 ElList* old = (ElList*)(uintptr_t)listv;
|
||||
el_runtime.c:1575 ElMap* m = (ElMap*)(uintptr_t)headers_map;
|
||||
el_runtime.c:1621 ElMap* hm = (ElMap*)(uintptr_t)hv;
|
||||
el_runtime.c:17814 ElList* lst = (ElList*)(uintptr_t)tools_list;
|
||||
el_runtime.c:17985 ElList* tl = (ElList*)(uintptr_t)tools;
|
||||
el_runtime_win32.c:483 ElList* l = (ElList*)(uintptr_t)lv;
|
||||
el_runtime_win32.c:488 ElList* l = (ElList*)(uintptr_t)lv;
|
||||
el_runtime_win32.c:494 ElList* old = (ElList*)(uintptr_t)lv;
|
||||
el_runtime_win32.c:529 ElList* old = (ElList*)(uintptr_t)lv;
|
||||
el_runtime_win32.c:567 ElMap* m = (ElMap*)(uintptr_t)mv;
|
||||
el_runtime_win32.c:580 ElMap* m = (ElMap*)(uintptr_t)mv;
|
||||
|
||||
ok 11 unguarded casts, at baseline 11
|
||||
ratchet_exit=0
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:50:35Z
|
||||
exit 0
|
||||
ms 59
|
||||
sha256_out aa76315e49e9d7647e0f3a8db389a3c092dede50c1ce516c35e4fb421bd00e1e
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1 @@
|
||||
bash -c echo "measurement window: a116710b..HEAD"; echo; echo "--- commits in window touching lang/ ---"; git log --oneline a116710b..HEAD -- lang/ ; echo "(empty above means no compiler or runtime source changed during measurement)"; echo; echo "--- commits in window touching scripts/ or tools/evidence/capture.sh ---"; git log --oneline a116710b..HEAD -- scripts/ tools/evidence/capture.sh; echo; echo "--- total commits in window ---"; git rev-list --count a116710b..HEAD
|
||||
@@ -0,0 +1,9 @@
|
||||
measurement window: a116710b..HEAD
|
||||
|
||||
--- commits in window touching lang/ ---
|
||||
(empty above means no compiler or runtime source changed during measurement)
|
||||
|
||||
--- commits in window touching scripts/ or tools/evidence/capture.sh ---
|
||||
|
||||
--- total commits in window ---
|
||||
5
|
||||
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:50:35Z
|
||||
exit 0
|
||||
ms 28
|
||||
sha256_out f1ec7f85c5370e7a5667800f764e8763baeeb1a7b1f2410294b4ebf7c0778e4b
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
+1
@@ -0,0 +1 @@
|
||||
./tools/evidence/verify-manifest.sh docs/v2/experiments/evidence/cycles
|
||||
+220
@@ -0,0 +1,220 @@
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0001-tree-state-at-start.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0002-landing-commits.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0003-baseline-commit-4661.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0004-baseline-4661-cited-in-v1.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0011-DELTA-code-comment-total-recomputed.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0012-BUCKET-SUM-consistency-check.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 05-the-metric-counted-comments/0013-NEWLINE-CHECK-file-ends-with-newline.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0001-00-git-status-porcelain.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0002-01-landing-commits.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0003-02-head-at-capture.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0004-03-branch-empty-probe-search.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0005-04-current-branch.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0006-p3-segv-source.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0007-p3-exit-THROUGH-A-PIPE.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0008-p3-exit-CAPTURED-DIRECT.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0009-p3-capture-sh-own-rc-on-segv.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0010-p3-capture-sh-direct-rc-line.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0011-p5-verify-sh-globs-integration.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0012-p5-harnesses-the-glob-finds.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0013-p5-harness-count.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0014-p5-git-log-S-hardcoded-list.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0015-p5-grep-docs-hardcoded-list.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0016-p1-verify-sh-stage-headers.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0017-p1-verify-sh-full-source.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0018-p1-verify-sh-linecount.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0019-fixpoint-rule-gen2-gen3.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0020-exitcode-direct-not-pipe.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0021-verify-merge-sh-full-source.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0022-instruments-unchanged-since-6c80dee.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0023-instruments-introduced-by-6c80dee.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0027-p4-referenced-artifact-binding.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0028-p4-a116710b-is-ancestor-of-iteration2.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0029-findings-measurement-defects-v2-at-6c80dee.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0030-findings-measurement-defects-entry-count-at-6c80dee.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0031-findings-v1-defect-headings-at-6c80dee.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0032-p3-v1-defect-4-read-the-wrong-exit-code.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0033-enumeration-defect-commits-two-days.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0034-p2-historical-empty-probe-merge-search.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0035-zz-head-at-end-of-capture.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0036-zz-git-status-porcelain-at-end.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0037-p3-does-verify-sh-DETECT-pipe-misuse.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0038-p3-pipe-WITH-pipefail-set.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 04-verification-was-a-convention/0039-p3-pipe-WITHOUT-pipefail.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0001-00-pinned-commit-stack.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0002-01-runtime-diff-introduced-by-d9d1571.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0003-02-seam-depth-stack-source-as-landed.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0004-03-BASE-has-no-depth-stack.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0005-04-binaries-under-test.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0006-05-workload-identical-in-both-worktrees.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0007-06-timing-WARMUP-base.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0008-07-timing-WARMUP-stack.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0009-timing-round1-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0010-timing-round1-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0011-timing-round2-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0012-timing-round2-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0013-timing-round3-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0014-timing-round3-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0015-timing-round4-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0016-timing-round4-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0017-timing-round5-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0018-timing-round5-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0019-timing-round6-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0020-timing-round6-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0021-timing-round7-BASE.out (commit d403a5cf2e72) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0022-timing-round7-STACK.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0023-22-TIMING-SUMMARY-computed-from-manifest.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0024-23-TIMING-SUMMARY-computed-from-manifest.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0025-24-COLD-vs-WARM-explains-the-phantom-regression.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0026-25-EMISSION-POINTS-from-emitted-C-simple.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0027-26-EMISSION-POINTS-from-emitted-C-loops-calls-fields.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0028-27-EMISSION-POINT-ENUMERATION-per-function.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0029-28-emitted-C-full-probe.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0030-29-probe-source-loops-calls-fields.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0031-30-CONTROL-seam_caller-harness-at-d9d1571.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0032-31-AUDIT-unbound-nothing-reported.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0033-32-AUDIT-bound-the-caller-is-visible.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0034-33-the-harness-assertion-greps-SOURCE.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0035-34-DISCONNECT-baseline-grep-count-and-binary-sha.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0036-35-DISCONNECT-add-a-COMMENT-to-source.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0037-36-DISCONNECT-harness-now-FAILS-on-a-comment.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0038-37-DISCONNECT-revert-the-comment.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0039-38-defect11-arity-assertion-BEFORE-503.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0040-39-defect11-arity-assertion-AFTER-property.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 07-the-caller-was-already-there/0041-40-worktree-clean-at-end.out (commit d9d1571f2a17) — not reproducible by checkout
|
||||
DIRTY-TREE 01-the-compiler-was-never-measured/0001-worktree-dirt-at-capture-start.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 01-the-compiler-was-never-measured/0018-measurement-window-commits-touched-docs-only.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0001-git-status-porcelain.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0002-harness-annotation_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0003-harness-arity_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0004-harness-async_future.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0005-harness-capability_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0006-harness-definitions_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0007-harness-prohibition_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0008-harness-seam_binding.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0009-harness-seam_caller.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0010-harness-tagged_gate.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0011-harness-temporal_query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0012-harness-temporal_signatures.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0013-harness-unguarded_deref.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0014-harness-units_as_data.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0015-harness-count.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0016-assertion-tally-per-harness.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0017-native-suite-emit-c.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0018-native-suite-link.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0019-native-suite-run.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0020-grep-mutant-lang-scripts-tools.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0021-grep-mutation-lang-scripts-tools.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0022-grep-mutation-in-verify-sh.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0023-verify-sh-stage-headers.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0024-grep-mutation-with-context.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0025-grep-c-occurrences-per-harness.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0026-chk-call-count-per-harness.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0027-git-log-S503-arity-query.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0028-arity-query-before-9cc6040.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0029-arity-query-503-assertion-before.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0030-arity-query-signatures-assertion-after.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0031-arity-query-diff-47b56a3.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0032-ratchet-baseline-literal.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0033-ratchet-run-current.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0034-git-show-a116710b.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0035-git-log-cycle08-doc-history.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0036-git-show-d936bde-seal.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0037-doc-at-seal-d936bde.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0038-doc-diff-seal-to-head.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0039-index-entry-cycle08.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0040-readme-entry-cycle08.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0041-index-entry-cycle08-00INDEX.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0042-elc-head-binary-sha256.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 08-PREDICTIONS/0043-verify-manifest-control.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0001-git-status-porcelain.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0002-head-sha-at-start.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0003-ratchet-at-HEAD.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0004-landing-commits.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0005-landing-commit-3aa6c56.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0006-landing-commit-272b2c9.out (commit d63815316c55) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0007-cast-counts-at-HEAD.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0008-harness-unguarded-deref-at-HEAD.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0009-elrun-HEAD-c1_string_42.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0010-elrun-HEAD-c2_sha256_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0011-elrun-HEAD-c3_fortnights.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0012-elrun-HEAD-c4_list_join_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0013-elrun-HEAD-c5_list_push_front_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0014-elrun-HEAD-c6_legit_list_join.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0015-elrun-HEAD-c8_map_get_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0016-elrun-HEAD-c9_get_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0017-elrun-HEAD-c9_get_int.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0018-blindspot-EL_CSTR-cast-macro.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0020-elrun-PREFIX-ebb4f1f-c4_list_join_int.out (commit ebb4f1f43bb2) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0021-four-builtins-guarded-at-HEAD.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0022-four-builtins-guarded-at-HEAD-v2.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0023-four-builtins-UNGUARDED-at-PREFIX-ebb4f1f.out (commit ebb4f1f43bb2) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0024-ratchet-ABSENT-at-PREFIX-ebb4f1f.out (commit ebb4f1f43bb2) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0027-ratchet-probeA2-new-unguarded-deref.out (commit 3aa6c569d57d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0028-ratchet-probeC-new-unguarded-deref.out (commit 3aa6c569d57d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0029-ratchet-probeD2-new-unguarded-deref.out (commit 3aa6c569d57d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0030-win32-not-built-on-this-platform.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 03-a-gate-with-no-detector/0031-harness-cases-vs-doc-five.out (commit fa03a0a60d6d) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0001-00-BUGGY-pinned-commit.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0002-01-BUGGY-worktree-clean.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0003-02-BUGGY-el_input_len-source.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0004-03-BUGGY-looks_like_heap_obj-source.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0005-04-probe-source-20-literals-lengths-1-to-20.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0006-05-BUGGY-RUN-20-literals.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0007-06-BUGGY-ORACLE-verdict.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0008-07-ALIGNMENT-the-docs-own-five-literals.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0009-08-ALIGNMENT-twenty-literals-lengths-1-to-20.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0010-09-alignment-probe-source-align5.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0011-10-alignment-probe-source-align20.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0012-11-FIXED-pinned-commit.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0013-12-FIXED-el_input_len-source.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0014-13-FIXED-RUN-20-literals.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0015-14-FIXED-ORACLE-verdict.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0016-15-tagged_gate-assertion-count-BEFORE.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0017-16-tagged_gate-assertion-count-AFTER.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0018-17-tagged_gate-harness-run.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0019-18-P4-codegen-line-delta.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0020-19-P2-names-moved-to-signatures-rel.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0021-20-P1-the-seven-tables-BEFORE.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0022-21-P1-the-seven-tables-AFTER.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0023-22-P8-BUGGY-5-fortnights-SIGSEGV.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0024-23-P8-BUGGY-emitted-C-is-a-field-access.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0025-24-P10-BUGGY-legitimate-access.out (commit 1a5246667d80) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0026-25-P9-FIXED-5-fortnights-survives.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0027-26-P10-FIXED-legitimate-access-unaffected.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0028-27-P9-P11-as_map-and-as_list-gates.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0029-28-P5-fixpoint-and-suites-at-abb0ab4.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0030-29-verify-sh-did-not-exist-at-abb0ab4.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0031-30-P5-FIXPOINT-gen2-eq-gen3-at-abb0ab4.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0032-31-P5-NATIVE-SUITE-at-abb0ab4.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 02-seven-tables-and-a-shipped-defect/0033-32-P5-ALL-HARNESSES-at-abb0ab4.out (commit abb0ab41980f) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0001-00-worktree-clean-at-start.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0002-01-pinned-commit.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0003-02-BEFORE-compiler-binary-stat-and-sha.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0004-03-BEFORE-units-rel-contents.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0005-04-BEFORE-units-rel-entry-count.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0006-05-BEFORE-fortnight-absent-from-whole-repo.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0007-06-BEFORE-emit-C-for-3-fortnights.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0008-07-BEFORE-emit-C-for-5-hours-control.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0009-08-BEFORE-grep-fortnight-lowering.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0010-09-THE-DATA-EDIT-two-lines-appended.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0011-10-THE-DATA-EDIT-git-diff.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0012-11-THE-DATA-EDIT-git-diff-stat.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0013-12-AFTER-compiler-binary-stat-and-sha-UNCHANGED.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0014-13-PROOF-binary-mtime-PREDATES-data-edit.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0015-14-AFTER-emit-C-for-3-fortnights.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0016-15-AFTER-grep-fortnight-lowering.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0017-16-AFTER-compile-and-link-the-emitted-C.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0018-17-AFTER-RUN-3-fortnights-native.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0019-18-AFTER-expected-value-arithmetic.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0020-19-REVERT-the-data-edit.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0021-20-REVERT-worktree-clean-again.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0022-21-AFTER-REVERT-fortnights-is-a-field-access-again.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0023-22-P4-earth-day-is-data.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0024-23-P2-no-unit-name-in-lexer-keyword-table.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0025-24-ONE-COPY-parser-holds-vocabulary.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0026-25-codegen-duration_unit_nanos-now-delegates.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0027-26-BEFORE-two-hand-maintained-copies-at-8cb7613.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0028-27-BEFORE-entry-counts-in-both-copies-at-8cb7613.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
DIRTY-TREE 06-form-is-half-bindable/0029-28-CONTROL-units_as_data-harness-at-e82d941.out (commit e82d941b5f96) — not reproducible by checkout
|
||||
evidence: 250 artifacts verified, 0 altered, 0 missing
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
commit a0cc95e3db7b04b6e221f89e89352b0e6b15d5b7
|
||||
tree dirty
|
||||
captured_utc 2026-08-17T17:50:53Z
|
||||
exit 0
|
||||
ms 3279
|
||||
sha256_out 2e774324c50d1620b97f3545c7792dc27d1ea7ed609790f4af468594d1f08331
|
||||
sha256_err e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
+1
@@ -0,0 +1 @@
|
||||
0
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user