summaryrefslogtreecommitdiff
path: root/doc/README.commands.itest
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-09-27 08:05:53 -0600
committerTom Rini <trini@konsulko.com>2025-09-27 08:05:53 -0600
commit07b7259b8b668e49d413f6ace3d1fe098a67c5fa (patch)
tree7d5e2ccd2fa182842fd6eb0f3beadf4ca7d425a7 /doc/README.commands.itest
parent9b45d574af1b64fcd997f08fe702a2d0ecfccbe4 (diff)
parenta0fe8cedcbe8c76403a77e57eac228b8f778a3ae (diff)
Merge tag 'efi-2025-10-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-10-rc6 CI: * https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/27745 Docs: * Correct encodings for spl memory layout diagrams * Suggest usage of KDOC_WERROR when building documentation * Replace references to README.fdt-control * Clarify precedence of environment locations * Add documentation for the TI am335x_evm board * Remove README.commands.itest * Add a note about asking for feedback in the development process UEFI: * Cleanup UEFI Variables Kconfig menu
Diffstat (limited to 'doc/README.commands.itest')
-rw-r--r--doc/README.commands.itest16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/README.commands.itest b/doc/README.commands.itest
deleted file mode 100644
index 5e0fe86247a..00000000000
--- a/doc/README.commands.itest
+++ /dev/null
@@ -1,16 +0,0 @@
-A slow day today so here is a revised itest command with provisional
-support for comparing strings as well :-))
-
-Now table driven to allow the operators
--eq, -ne, -lt, -gt, -le, -ge, ==, !=, <>, <, >, <=, >=
-
-Uses the expected command modifier for integer compares of width 1, 2 or
-4 bytes of .b, .w, .l and the new modifer of .s for a string compare.
-String comparison is over the length of the shorter, this hopefully
-avoids missing terminators when using an indirect pointer.
-
-eg.
-if itest.l *40000 == 12345678 then; ....
-if itest.w *40000 != 1234 then; ....
-if itest.b *40000 >= 12 then; ....
-if itest.s *40000 -eq hello then; ....