diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-15 09:06:52 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-15 09:06:52 +0200 |
commit | e70960f0c2df2807e01717e1bb1ba72322b0bc43 (patch) | |
tree | b7c58609c7d9bd6ba52c6fef2dbc2666164a2321 | |
parent | c201100a2caf6067206c80b4836f53606334d4bf (diff) |
use REPORT.arch.libc. disable m68k for uClibc (does not compile). enable sparc64/ppc64 for glibc
-rwxr-xr-x | embedded-test.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index a3cbd53..89a4d8d 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -26,9 +26,9 @@ # sheb network card get no ip adk_arch_list_uclibcng="arm armhf m68k-nommu mips mipsel mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc-nofpu sh sheb sparc x86 x86_64 xtensa" -adk_arch_list_uclibc="arm armhf m68k-nommu mips mipsel mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc-nofpu sh sheb sparc x86 x86_64" +adk_arch_list_uclibc="arm armhf mips mipsel mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc-nofpu sh sheb sparc x86 x86_64" adk_arch_list_musl="arm armhf mips mipsel ppc-nofpu sh sheb x86 x86_64" -adk_arch_list_glibc="aarch64 arm armhf mips mipsel mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc-nofpu sh sheb sparc x86 x86_64" +adk_arch_list_glibc="aarch64 arm armhf mips mipsel mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc-nofpu ppc64 sh sheb sparc sparc64 x86 x86_64" br_arch_list_uclibcng="arcle arcbe bfin arm mips mipsel mips64 mips64el ppc sh sparc x86 x86_64 xtensa" br_arch_list_uclibc="arcle arcbe bfin arm mips mipsel mips64 mips64el ppc sh sparc x86 x86_64 xtensa" @@ -515,12 +515,12 @@ EOF echo "Now running the tests in qemu for architecture ${arch}" echo "${qemu} -M ${qemu_machine} ${qemu_args} -append ${qemu_append} -kernel ${kernel} -qmp tcp:127.0.0.1:4444,server,nowait -no-reboot -nographic -initrd initramfs.${arch}" - ${qemu} -M ${qemu_machine} ${qemu_args} -append "${qemu_append}" -kernel ${kernel} -qmp tcp:127.0.0.1:4444,server,nowait -no-reboot -nographic -initrd initramfs.${arch} | tee REPORT.${arch} + ${qemu} -M ${qemu_machine} ${qemu_args} -append "${qemu_append}" -kernel ${kernel} -qmp tcp:127.0.0.1:4444,server,nowait -no-reboot -nographic -initrd initramfs.${arch} | tee REPORT.${arch}.${libc} if [ $? -eq 0 ];then - echo "Test for ${arch} finished. See REPORT.${arch}." + echo "Test for ${arch} finished. See REPORT.${arch}.${libc}" echo else - echo "Test failed for ${arch}." + echo "Test failed for ${arch} with ${libc}." echo fi } |