Blame view

doc/README.commands.itest 636 Bytes
cd0a9de68   wdenk   * Patch by Lauren...
1
  A slow day today so here is a revised itest command with provisional
2d1a537d8   wdenk   * Patch by Thomas...
2
3
4
5
  support for comparing strings as well :-))
  
  Now table driven to allow the operators
  -eq, -ne, -lt, -gt, -le, -ge, ==, !=, <>, <, >, <=, >=
cd0a9de68   wdenk   * Patch by Lauren...
6
7
8
  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
2d1a537d8   wdenk   * Patch by Thomas...
9
10
11
12
13
14
15
  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; ....