diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-01-10 11:44:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-01-10 12:24:23 +0100 |
commit | 77e0c09bc1a526f7b39801ac8d9ac98105e94f45 (patch) | |
tree | 7672a73431a84618486015e04d7b542aaab03912 | |
parent | 7f9105a4beee1a643d13c6ddeab3bb457f8cb7c8 (diff) |
fix continue stamps
-rwxr-xr-x | embedded-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 9a0b79e..fc0da01 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -1090,7 +1090,7 @@ for lib in ${libc}; do for arch in $archlist; do get_arch_info $arch $lib if [ $cont -eq 1 ]; then - if [ -f "REPORT.${arch}.${test}.${libver}" ]; then + if [ -f "REPORT.${arch}.${emulator}.${test}.${libver}" ]; then echo "Skipping already run test $test for $arch and $lib" continue fi @@ -1109,7 +1109,7 @@ for lib in ${libc}; do fi else # fake stamp for continue - touch REPORT.${arch}.${test}.${libver} + touch REPORT.${arch}.${emulator}.${test}.${libver} fi else echo "$lib not available for $arch" |