Skip to content
Snippets Groups Projects
Commit 1a16238d authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #12722 from owncloud/autocomplete-for-autotest-jenkins

Allow autocomplete for test file in autotest.sh
parents 26861a98 532bcf40
No related branches found
No related tags found
No related merge requests found
......@@ -227,7 +227,11 @@ if [ -z "$1" ]
execute_tests $DBCONFIG
done
else
execute_tests "$1" "$2" "$3"
FILENAME="$2"
if [ ! -f "tests/$FILENAME" ]; then
FILENAME="../$FILENAME"
fi
execute_tests "$1" "$FILENAME" "$3"
fi
cd "$BASEDIR"
......
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