Commit ce054c91 authored by Amadeu Andrade Barbosa Junior's avatar Amadeu Andrade Barbosa Junior
Browse files

[OPENBUS-1599] Criar suite de testes para o core e sdk-lua do OpenBus 2.0

- Remoção da variavel TESTDIR, o runall.sh passa a ser relativo à pasta atual.


git-svn-id: https://subversion.tecgraf.puc-rio.br/engdist/openbus/core/trunk@130320 ae0415b3-e90b-0410-900d-d0be9363c56b
Showing with 2 additions and 3 deletions
+2 -3
......@@ -2,7 +2,6 @@
CONSOLE="${OPENBUS_HOME}/bin/busconsole"
RUNNER="${CONSOLE} ${OPENBUS_HOME}/lib/lua/5.1/latt/ConsoleTestRunner.lua"
TESTDIR=${OPENBUS_HOME}/test
LUACASES="\
openbus/test/core/services/LoginDB \
......@@ -10,7 +9,7 @@ openbus/test/core/Protocol \
"
for case in ${LUACASES}; do
echo -n "Test '${case}' ... "
${CONSOLE} ${TESTDIR}/${case}.lua $@ || exit $?
${CONSOLE} ${case}.lua $@ || exit $?
echo "OK"
done
......@@ -24,5 +23,5 @@ openbus/test/core/admin/admin \
#openbus/test/core/services/LDAPAuthentication
for case in ${LATTCASES}; do
echo "LATT '${case}':"
${RUNNER} ${TESTDIR}/${case}.lua || exit $?
${RUNNER} ${case}.lua || exit $?
done
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment