From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5244] alpha: improve testsuite
Date: Wed, 17 Sep 2008 22:04:37 +0000 [thread overview]
Message-ID: <E1Kg58X-0001ee-MA@cvs.savannah.gnu.org> (raw)
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 <gingold@adacore.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
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:
reply other threads:[~2008-09-17 22:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1Kg58X-0001ee-MA@cvs.savannah.gnu.org \
--to=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).