Commit 546cdbd77da8ceb09ce1b4df4fbf9c68533e7f17
1 parent
c2655080
first multi target test (lauches 'ls')
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@500 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
6 additions
and
0 deletions
tests/Makefile
... | ... | @@ -65,5 +65,11 @@ hello-arm: hello-arm.o |
65 | 65 | hello-arm.o: hello-arm.c |
66 | 66 | arm-linux-gcc -Wall -g -O2 -c -o $@ $< |
67 | 67 | |
68 | +# XXX: find a way to compile easily a test for each arch | |
69 | +test2: | |
70 | + @for arch in i386 arm sparc ppc; do \ | |
71 | + ../$${arch}-user/qemu-$${arch} $${arch}/ls -l linux-test.c ; \ | |
72 | + done | |
73 | + | |
68 | 74 | clean: |
69 | 75 | rm -f *~ *.o $(TESTS) | ... | ... |