1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Java OCA tests: return code added to tester

This commit is contained in:
Carlos Martín 2011-06-16 17:51:15 +02:00
parent 3f1cd6e540
commit 2f9443658f

View File

@ -16,12 +16,30 @@ cp oned.conf $ONEDCONF_LOCATION
export ONE_XMLRPC=http://localhost:2666/RPC2
RC=0
./test.sh HostTest
let RC=RC+$?
./test.sh ImageTest
let RC=RC+$?
./test.sh SessionTest
let RC=RC+$?
./test.sh UserTest
let RC=RC+$?
./test.sh VirtualMachineTest
let RC=RC+$?
./test.sh VirtualNetworkTest
let RC=RC+$?
./test.sh TemplateTest
./test.sh GroupTest
let RC=RC+$?
./test.sh GroupTest
let RC=RC+$?
exit $RC