aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-01-04 16:08:39 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-01-04 16:08:39 +0000
commit546cdbd77da8ceb09ce1b4df4fbf9c68533e7f17 (patch)
tree9f8a0f6a3b634396c36cdb298f31c1781e412724 /tests
parentc2655080670e25f13756d00ab1548a364b7ddd01 (diff)
first multi target test (lauches 'ls')
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@500 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4cfe7912ec..a9bb0f3dc5 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -65,5 +65,11 @@ hello-arm: hello-arm.o
hello-arm.o: hello-arm.c
arm-linux-gcc -Wall -g -O2 -c -o $@ $<
+# XXX: find a way to compile easily a test for each arch
+test2:
+ @for arch in i386 arm sparc ppc; do \
+ ../$${arch}-user/qemu-$${arch} $${arch}/ls -l linux-test.c ; \
+ done
+
clean:
rm -f *~ *.o $(TESTS)