README.commands.itest 636 B

12345678910111213141516
  1. A slow day today so here is a revised itest command with provisional
  2. support for comparing strings as well :-))
  3. Now table driven to allow the operators
  4. -eq, -ne, -lt, -gt, -le, -ge, ==, !=, <>, <, >, <=, >=
  5. Uses the expected command modifier for integer compares of width 1, 2 or
  6. 4 bytes of .b, .w, .l and the new modifer of .s for a string compare.
  7. String comparison is over the length of the shorter, this hopefully
  8. avoids missing terminators when using an indirect pointer.
  9. eg.
  10. if itest.l *40000 == 12345678 then; ....
  11. if itest.w *40000 != 1234 then; ....
  12. if itest.b *40000 >= 12 then; ....
  13. if itest.s *40000 -eq hello then; ....