From a451b92722910e6bd39344472be50a97a776656e Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 9 Jun 2010 21:30:56 +0300 Subject: [PATCH] kvm, test: Improve PIT test output This patch makes the PIT test output less verbose. Signed-off-by: Pekka Enberg --- tools/kvm/tests/pit/tick.S | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/tools/kvm/tests/pit/tick.S b/tools/kvm/tests/pit/tick.S index e6508e1aab69..934893f22c6c 100644 --- a/tools/kvm/tests/pit/tick.S +++ b/tools/kvm/tests/pit/tick.S @@ -11,11 +11,6 @@ .globl _start .type _start, @function _start: - mov $0x3f8,%dx - cs lea msg1, %si - mov $(msg1_end-msg1), %cx - cs rep/outsb - /* * fill up noop handlers */ @@ -84,14 +79,8 @@ timer_isr: pushaw pushfw mov $0x3f8,%dx - mov $0x49, %al # I + mov $0x2e, %al # . out %al,%dx - mov $0x53, %al # S - out %al,%dx - mov $0x52, %al # R - out %al,%dx - mov $0x0a, %al # \n - out %al, %dx decw count jz test_ok popfw @@ -103,11 +92,7 @@ noop_handler: count: .word TEST_COUNT -msg1: - .ascii "This is PVM.\nPIC 8259 and PIT 8254 test.\n" - .asciz "---------------------------------------------------\n" -msg1_end: msg2: - .asciz "TEST OK\n" + .asciz "\nTest OK\n" msg2_end: -- 2.39.5