From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kg58Z-0003yZ-RE for qemu-devel@nongnu.org; Wed, 17 Sep 2008 18:04:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kg58Z-0003xq-3a for qemu-devel@nongnu.org; Wed, 17 Sep 2008 18:04:39 -0400 Received: from [199.232.76.173] (port=35146 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kg58Y-0003xi-SM for qemu-devel@nongnu.org; Wed, 17 Sep 2008 18:04:38 -0400 Received: from savannah.gnu.org ([199.232.41.3]:58457 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kg58Y-0000b7-EK for qemu-devel@nongnu.org; Wed, 17 Sep 2008 18:04:38 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Kg58X-0001ei-U9 for qemu-devel@nongnu.org; Wed, 17 Sep 2008 22:04:37 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Kg58X-0001ee-MA for qemu-devel@nongnu.org; Wed, 17 Sep 2008 22:04:37 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Wed, 17 Sep 2008 22:04:37 +0000 Subject: [Qemu-devel] [5244] alpha: improve testsuite Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5244 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5244 Author: aurel32 Date: 2008-09-17 22:04:37 +0000 (Wed, 17 Sep 2008) Log Message: ----------- alpha: improve testsuite misc tiny patches: * add a 'check' target to the Makefile * split code in crt.s to create the _exit syscall; also use the value of main() as exit status Signed-off-by: Tristan Gingold Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/tests/alpha/Makefile trunk/tests/alpha/crt.s Modified: trunk/tests/alpha/Makefile =================================================================== --- trunk/tests/alpha/Makefile 2008-09-17 22:04:29 UTC (rev 5243) +++ trunk/tests/alpha/Makefile 2008-09-17 22:04:37 UTC (rev 5244) @@ -5,7 +5,7 @@ SIM=../../alpha-linux-user/qemu-alpha CFLAGS=-O -LINK=$(CC) -v -o $@ crt.o $< -nostdlib +LINK=$(CC) -o $@ crt.o $< -nostdlib TESTS=test-cond test-cmov @@ -23,7 +23,10 @@ test-cmov: test-cmov.o crt.o $(LINK) +check: $(TESTS) + for f in $(TESTS); do $(SIM) $$f || exit 1; done + clean: $(RM) *.o *~ hello-alpha $(TESTS) -.PHONY: clean all +.PHONY: clean all check Modified: trunk/tests/alpha/crt.s =================================================================== --- trunk/tests/alpha/crt.s 2008-09-17 22:04:29 UTC (rev 5243) +++ trunk/tests/alpha/crt.s 2008-09-17 22:04:37 UTC (rev 5244) @@ -9,12 +9,15 @@ .prologue 0 ldq $27,main($29) !literal!1 jsr $26,($27) + or $0,$0,$16 + .end _start + .globl _exit +_exit: lda $0,1 callsys call_pal 0 - .end _start .globl write write: