|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86emul: pad blob-execution "okay" messages
commit 10cf9035d29c4b35fbecc02a73c285a4183dfa34
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Fri Jul 9 08:31:28 2021 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Fri Jul 9 08:31:28 2021 +0200
x86emul: pad blob-execution "okay" messages
We already do so in the native execution case, and a few descriptions (I
did notice this with SHA ones) are short enough for the output to look
slightly odd.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
---
tools/tests/x86_emulator/test_x86_emulator.c | 24 ++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/tools/tests/x86_emulator/test_x86_emulator.c
b/tools/tests/x86_emulator/test_x86_emulator.c
index 9677476db0..9b3e98a1a5 100644
--- a/tools/tests/x86_emulator/test_x86_emulator.c
+++ b/tools/tests/x86_emulator/test_x86_emulator.c
@@ -5181,6 +5181,8 @@ int main(int argc, char **argv)
for ( j = 0; j < ARRAY_SIZE(blobs); j++ )
{
+ unsigned int nr;
+
if ( blobs[j].check_cpu && !blobs[j].check_cpu() )
continue;
@@ -5196,7 +5198,8 @@ int main(int argc, char **argv)
if ( ctxt.addr_size == sizeof(void *) * CHAR_BIT )
{
- i = printf("Testing %s native execution...", blobs[j].name);
+ nr = printf("Testing %s native execution...", blobs[j].name);
+
if ( blobs[j].set_regs )
blobs[j].set_regs(®s);
asm volatile (
@@ -5212,11 +5215,13 @@ int main(int argc, char **argv)
);
if ( !blobs[j].check_regs(®s) )
goto fail;
- printf("%*sokay\n", i < 40 ? 40 - i : 0, "");
+
+ printf("%*sokay\n", nr < 40 ? 40 - nr : 0, "");
}
- printf("Testing %s %u-bit code sequence",
- blobs[j].name, ctxt.addr_size);
+ nr = printf("Testing %s %u-bit code sequence",
+ blobs[j].name, ctxt.addr_size);
+
if ( blobs[j].set_regs )
blobs[j].set_regs(®s);
regs.eip = (unsigned long)res;
@@ -5233,7 +5238,10 @@ int main(int argc, char **argv)
regs.eip < (unsigned long)res + blobs[j].size )
{
if ( (i++ & 8191) == 0 )
+ {
printf(".");
+ ++nr;
+ }
rc = x86_emulate(&ctxt, &emulops);
if ( rc != X86EMUL_OKAY )
{
@@ -5242,13 +5250,17 @@ int main(int argc, char **argv)
return 1;
}
}
- for ( ; i < 2 * 8192; i += 8192 )
+ for ( ; i < 2 * 8192; i += 8192 ) {
printf(".");
+ ++nr;
+ }
+
if ( (regs.eip != 0x12345678) ||
(regs.esp != ((unsigned long)res + MMAP_SZ)) ||
!blobs[j].check_regs(®s) )
goto fail;
- printf("okay\n");
+
+ printf("%*sokay\n", nr < 40 ? 40 - nr : 0, "");
}
return 0;
--
generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |