about summary refs log tree commit diff stats
path: root/html/subx/examples/ex8.subx.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/subx/examples/ex8.subx.html')
-rw-r--r--html/subx/examples/ex8.subx.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/subx/examples/ex8.subx.html b/html/subx/examples/ex8.subx.html
index e0f26b54..03c23e36 100644
--- a/html/subx/examples/ex8.subx.html
+++ b/html/subx/examples/ex8.subx.html
@@ -99,8 +99,8 @@ if ('onhashchange' in window) {
 <span id="L41" class="LineNr">41 </span>    b8/copy-to-EAX  0/imm32
 <span id="L42" class="LineNr">42 </span><span class="Constant">$ascii-length-loop</span>:
 <span id="L43" class="LineNr">43 </span>    <span class="subxComment"># var c/ECX = *s</span>
-<span id="L44" class="LineNr">44 </span>    8a/copy                         0/mod/*         2/rm32/EDX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          1/r32/ECX  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy byte at *EDX to lower byte of ECX</span>
-<span id="L45" class="LineNr">45 </span>    <span class="subxComment"># if c == '\0' break</span>
+<span id="L44" class="LineNr">44 </span>    8a/copy-byte                    0/mod/*         2/rm32/EDX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          1/r32/CL   <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy byte at *EDX to CL</span>
+<span id="L45" class="LineNr">45 </span>    <span class="subxComment"># if (c == '\0') break</span>
 <span id="L46" class="LineNr">46 </span>    81          7/subop/compare     3/mod/direct    1/rm32/ECX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              0/imm32           <span class="subxComment"># compare ECX</span>
 <span id="L47" class="LineNr">47 </span>    74/jump-if-equal  $ascii-length-ret/disp8
 <span id="L48" class="LineNr">48 </span>    <span class="subxComment"># ++s</span>
href='#n3'>3 4 5 6 7 8 9 10 11 12 13 14 15 16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
                     














                                                                       



                                                        
 
              
          



                                                          
               
 






                                                                           
                           
#!/usr/bin/env python
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
Run all the tests inside this directory as a test suite.
Usage: ./all_tests.py [verbosity]
"""

import os.path
import sys
rangerpath = os.path.join(os.path.dirname(__file__), '..')
if sys.path[1] != rangerpath:
	sys.path[1:1] = [rangerpath]

import unittest

if __name__ == '__main__':
	verbosity = int(sys.argv[1]) if len(sys.argv) > 1 else 1
	tests     = (fname[:-3] for fname in os.listdir(sys.path[0]) \
	             if fname[:3] == 'tc_' and fname[-3:] == '.py')
	suite     = unittest.TestLoader().loadTestsFromNames(tests)
	result    = unittest.TextTestRunner(verbosity=verbosity).run(suite)
	if len(result.errors + result.failures) > 0:
		sys.exit(1)