Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ jobs:
# stop depending on /dev/vms -- which is the whole thing this job
# exists to detect. The brittleness IS the feature.
# 8 failed as of vms-8019, which added test_kmod_procnam.
echo "$OUTPUT" | grep -qF '=== FINAL RESULTS: 3 suites passed, 8 suites failed ===' \
|| { echo "FAIL: did not see the expected 3-suites-passed/8-suites-failed split -- either the harness didn't reach its own accounting, or the failure count doesn't match the executive-absent scenario"; exit 1; }
# 9 failed as of vms-d0b, which added test_kmod_devtab.
echo "$OUTPUT" | grep -qF '=== FINAL RESULTS: 3 suites passed, 9 suites failed ===' \
|| { echo "FAIL: did not see the expected 3-suites-passed/9-suites-failed split -- either the harness didn't reach its own accounting, or the failure count doesn't match the executive-absent scenario"; exit 1; }

# POSITIVE assertion paired with the two negative assertions above:
# vmsfs.ko has no dependency on vms.ko/the executive, so it must
Expand Down
410 changes: 410 additions & 0 deletions docs/oracle/vax73-terminal-device.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ vms-y := vms_module.o \
vms_ast.o \
vms_eflag.o \
vms_lock.o \
vms_devtab.o \
vms_proctab.o

ccflags-y := -I$(src)
Expand Down
Loading
Loading