Skip to content
Snippets Groups Projects
Commit 5f7c5884 authored by Frédéric Dalleau's avatar Frédéric Dalleau
Browse files

Fix unitialized variable in test path

parent fe68fdf5
No related branches found
No related tags found
No related merge requests found
PATH=${TESTPATH}/common:${TESTPATH}/bin:$PATH
# Current test directory extracted from pwd
TESTPATH=$(pwd)
# Path for architecture independant binaries
PATH=${TESTPATH}/common:${TESTPATH}/bin:$PATH
# Path for architecture specific binaries
case `uname -m` in
x86_64) PATH=${TESTPATH}/amd64/bin:$PATH; ;;
armv7l) PATH=${TESTPATH}/armhf/bin:$PATH; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment