From: Andrew Cooper Date: Fri, 15 Jan 2016 15:34:59 +0000 (+0000) Subject: Misc docs improvements X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=75ee07aeb152f392e3daeef15a4d09588f22541f;p=people%2Froyger%2Fxen-test-framework.git Misc docs improvements * Include assembly files. They are not processed for structured comments, but are are available to be viewed and referred to. * Use the preferred @# to prevent automatic linking when using # * Disable timestamps. Helps when comparing generated content. Signed-off-by: Andrew Cooper --- diff --git a/Doxyfile b/Doxyfile index 097edc0..ebf0e92 100644 --- a/Doxyfile +++ b/Doxyfile @@ -823,7 +823,8 @@ FILE_PATTERNS = *.c \ *.ucf \ *.qsf \ *.as \ - *.js + *.js \ + *.S # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. @@ -1197,7 +1198,7 @@ HTML_COLORSTYLE_GAMMA = 80 # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_TIMESTAMP = YES +HTML_TIMESTAMP = NO # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the diff --git a/tests/swint-emulation/main.c b/tests/swint-emulation/main.c index 145530a..7c0b3f6 100644 --- a/tests/swint-emulation/main.c +++ b/tests/swint-emulation/main.c @@ -31,10 +31,10 @@ * Each instruction/prefix combination is executed in the following * conditions: * - cpl0, all permissions ok - expect traps - * - cpl0, descriptors not present - expect #%NP faults + * - cpl0, descriptors not present - expect @#NP faults * - cpl3, all permissions ok - expect traps - * - cpl3, descriptors dpl0 - expect #%GP faults (except `icebp`) - * - cpl3, descriptors not present - expect #%NP faults + * - cpl3, descriptors dpl0 - expect @#GP faults (except `icebp`) + * - cpl3, descriptors not present - expect @#NP faults * * In all cases, the exception frame is verified to be correct. */