#!/bin/bash # A stubbed `ctest` for scripts/ci/control_smoke_test.sh. # # Descended from the verification agent's stub (wave1-codex-verify.md 8, ~/w7/p5-verify-f8-stub/ctest), # which is what CONFIRMED that the negative controls accepted an unrelated failure. Every mode below # is deliberately the BEST case for the control under test: the selection is never empty except in # the mode that exists to test the empty-selection guard, and the baseline is green except in the # mode that exists to test the red-baseline guard. If a control passes here it is because the # control's logic is wrong, not because the stub starved it. # # STUB_MODE: # unrelated baseline green; the control's own run fails with UNRELATED_CONTROL_FAILURE # evidence baseline green; the control's own run fails with the scenarios' own wording # missing-fatal private file exists but lacks Fatal (stdout status still fails) # stdout-fatal Fatal exists only on stdout, never in the private file # stale-fatal Fatal exists before reset, never from this control run # e3-unrelated E1 has its private Fatal; E3(a) fails for an unrelated reason # skipped-selection knob kills pre-flight; private Fatal exists, entry skips, ctest exits 0 # notrun-selection selected entry was not run, despite a private Fatal # missing-selection selected entry is absent from the result XML # partial-fatal two entries fail, but only the first has its expected private Fatal # wrong-fatal entry fails with a different Fatal in its private file # green baseline green; the control's own run PASSES (the knob is not load-bearing) # red-baseline the baseline itself has a failed entry # all-skipped the baseline is entirely skipped (the disarmed lane, a legitimate exit 0) # retrace-noselect `ctest -N` matches nothing; the run exits 8 the way --no-tests=error does # retrace-unrelated one match; the run fails without naming the transport # retrace-evidence one match; the run fails with run_trace_case.cmake's own sentence # retrace-green one match; the run PASSES set -u mode="${STUB_MODE:?STUB_MODE must be set}" listing=1 junit="" prev="" for a in "$@"; do [ "$a" = "--show-only=json-v1" ] && json_requested=1 [ "$a" = "-N" ] && listing_requested=1 if [ "$prev" = "--output-junit" ]; then junit="$a"; fi prev="$a" done listing_requested="${listing_requested:-0}" emit_listing() { echo "Test project /stub" if [ "${mode}" = "retrace-noselect" ]; then echo "Total Tests: 0" return fi echo " Test #1: DirectGLES.Split.ClearThenReadPixelsScenario.ClearWithNoDrawIsVisibleToDefaultFramebufferReadPixels" if [ "${mode}" = partial-fatal ]; then echo " Test #2: DirectGLES.Split.TriangleScenario.SecondEntry" echo "Total Tests: 2" else echo "Total Tests: 1" fi } write_junit() { if [ "${MOBILEGL_IPC_VERB_BARRIER:-1}" = 0 ] || [ "${MOBILEGL_IPC_PERSISTENT_BLOCK_KB:-64}" = 0 ]; then entry=DirectGLES.Split.ClearThenReadPixelsScenario.ClearWithNoDrawIsVisibleToDefaultFramebufferReadPixels [ "${MOBILEGL_IPC_PERSISTENT_BLOCK_KB:-64}" != 0 ] || entry=DirectGLES.Split.PersistentCoherentMapScenario.TwoWritesThroughTheCoherentPointerEachReachTheirOwnDraw body="" if [ "${mode}" = partial-fatal ] && [ "${MOBILEGL_IPC_VERB_BARRIER:-1}" = 0 ]; then body="${body}" fi case "${mode}" in skipped-selection) body="" ;; notrun-selection) body="" ;; missing-selection) body='' ;; green) body="" ;; esac printf '%s\n' "${body}" > "$1" return fi case "${mode}" in red-baseline) body='' ;; all-skipped) body='' ;; *) body='' ;; esac printf '%s\n' '' "" " ${body}" '' > "$1" } # Model the library file sink separately from ctest stdout (ID-53). log="${CONTROL_TMPDIR}/entry.log" if [ "${json_requested:-0}" = 1 ]; then python3 -c 'import json, os; p=os.environ["CONTROL_TMPDIR"]; entries=[("ClearThenReadPixelsScenario.ClearWithNoDrawIsVisibleToDefaultFramebufferReadPixels", "entry.log"), ("PersistentCoherentMapScenario.TwoWritesThroughTheCoherentPointerEachReachTheirOwnDraw", "pmap.log")]; entries += [("TriangleScenario.SecondEntry", "second.log")] if os.environ["STUB_MODE"] == "partial-fatal" else []; print(json.dumps({"tests": [{"name": "DirectGLES.Split."+n, "properties": [{"name": "LABELS", "value": ["integration-split"]}, {"name": "ENVIRONMENT", "value": ["MOBILEGL_LOG_FILE_PATH="+p+"/"+f]}]} for n,f in entries]}))' if [ "${mode}" = stale-fatal ]; then echo 'Fatal{BarrierViolation, "DrawVbo"}' > "${log}" fi exit 0 fi if [ "${listing_requested}" = "1" ]; then emit_listing exit 0 fi if [ -n "${junit}" ]; then write_junit "${junit}" if [ "${MOBILEGL_IPC_VERB_BARRIER:-1}" != 0 ] && [ "${MOBILEGL_IPC_PERSISTENT_BLOCK_KB:-64}" != 0 ]; then case "${mode}" in red-baseline) echo "1/1 Test #1: ... ***Failed"; exit 8 ;; *) echo "100% tests passed, 0 tests failed out of 1"; exit 0 ;; esac fi fi # The control's own run. if [ "${MOBILEGL_IPC_VERB_BARRIER:-1}" = 0 ]; then case "${mode}" in evidence|e3-unrelated|skipped-selection|notrun-selection|missing-selection|partial-fatal) echo 'Fatal{BarrierViolation, "DrawVbo"}' > "${log}" ;; wrong-fatal) echo 'Fatal{ReplyMissing, "DrawVbo"}' > "${log}" ;; missing-fatal) echo "library setup only; no fatal" > "${log}" ;; stdout-fatal) echo 'Fatal{BarrierViolation, "DrawVbo"}' ;; esac fi case "${mode}" in skipped-selection|notrun-selection|missing-selection) echo '1/1 Test #1: selected entry ... ***Skipped' echo '100% tests passed, 0 tests failed out of 1' exit 0 ;; unrelated|missing-fatal|stdout-fatal|stale-fatal|e3-unrelated|partial-fatal|wrong-fatal) echo "1/1 Test #1: DirectGLES.Split.ClearThenReadPixelsScenario.ClearWithNoDrawIsVisibleToDefaultFramebufferReadPixels ...***Failed" echo "UNRELATED_CONTROL_FAILURE: the harness aborted in setup before the knob was read" if [ "${MOBILEGL_IPC_PERSISTENT_BLOCK_KB:-64}" = 0 ]; then case "${mode}" in missing-fatal|stdout-fatal|stale-fatal) echo "the SECOND write through the same mapping, announced by nothing" ;; esac fi exit 8 ;; evidence) # E1 is file-only above; E3(a) emits its scenario assertion to ctest. echo "1/1 Test #1: DirectGLES.Split.ClearThenReadPixelsScenario.ClearWithNoDrawIsVisibleToDefaultFramebufferReadPixels ...***Failed" echo "../MobileGL/MG_IntegrationTest/Scenarios/ClearThenReadPixelsScenario.cpp:290: Failure" echo "Expected: (bottom.r) > (200), actual: '\\0' vs 200" echo "the SECOND write through the same mapping, announced by nothing: this is exit gate E3(b)" exit 8 ;; green) echo "100% tests passed, 0 tests failed out of 1" exit 0 ;; retrace-noselect) echo "No tests were found!!!" exit 8 ;; retrace-unrelated) echo "1/1 Test #1: MobileGLTraceReplay.OpenRA.DirectGLES ...***Failed" echo "CMake Error: the fixture could not be unpacked" exit 8 ;; retrace-evidence) echo "1/1 Test #1: MobileGLTraceReplay.OpenRA.DirectGLES ...***Failed" echo "CMake Error at run_trace_case.cmake:279 (message):" echo " MOBILEGL_TRANSPORT=inproc is set for OpenRA DirectGLES and the library never" echo " reported resolving it: mobilegl.log carries no" echo ' "MOBILEGL_TRANSPORT=inproc - the MGPipe record stream".' exit 8 ;; retrace-green) echo "100% tests passed, 0 tests failed out of 1" exit 0 ;; *) echo "stub_ctest: unknown STUB_MODE '${mode}'" >&2 exit 127 ;; esac