diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-16 19:30:12 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-16 19:30:12 +0200 |
commit | 67df1220b8b1b92084fc1b8af06df42d60295741 (patch) | |
tree | 7897ae2953428e97b17edfe9483552702e6a1715 | |
parent | 061ebc1fcab428d816227f8e43a11a05706561e2 (diff) |
only clean once, enable c6x again
-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 6212167..a4667da 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -28,7 +28,7 @@ # m68k glibc toolchain building is broken at the moment # uClibc-ng -arch_list_uclibcng="arm armhf armeb arc arcbe avr32 bfin crisv10 crisv32 m68k m68k-nommu microblazeel microblazebe mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc ppcsf sh sheb sparc x86 x86_64 xtensa" +arch_list_uclibcng="arm armhf armeb arc arcbe avr32 bfin c6x crisv10 crisv32 m68k m68k-nommu microblazeel microblazebe mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc ppcsf sh sheb sparc x86 x86_64 xtensa" # musl arch_list_musl="aarch64 arm armhf armeb microblazeel microblazebe mips mipssf mipsel mipselsf or1k ppc sh sheb x86 x86_64" @@ -712,12 +712,12 @@ for lib in ${libc}; do fi fi + # start with a clean dir + if [ $clean -eq 1 ]; then + (cd openadk && make cleandir) + fi echo "Architectures to test: $archlist" for arch in ${archlist}; do - # start with a clean dir - if [ $clean -eq 1 ]; then - (cd openadk && make cleandir) - fi if [ $break -eq 1 -a -f "REPORT.${arch}.${lib}.${tests}.${version}" ]; then echo "Skipping this test after last build break" continue |