4.3.0 commit

This commit is contained in:
Olof hagsand 2020-01-01 12:16:32 +01:00
parent c1903916f9
commit e8ae628d06
7 changed files with 34 additions and 30 deletions

View file

@ -78,8 +78,8 @@ testname=
: ${RCLOG:=}
# Wait after daemons (backend/restconf) start. See mem.sh for valgrind
if [ "$(arch)" = "armv7l" ]; then
: ${RCWAIT:=4}
if [ "$(uname -m)" = "armv7l" ]; then
: ${RCWAIT:=8}
else
: ${RCWAIT:=2}
fi

View file

@ -98,9 +98,9 @@ done
# Then actual run
testnr=0
for c in $cmds; do
for cmd in $cmds; do
if [ $testnr != 0 ]; then echo; fi
println "Mem test $c begin"
memonce $c
println "Mem test $c done"
println "Mem test $cmd begin"
memonce $cmd
println "Mem test $cmd done"
done