Fixing test scripts.
diff --git a/tools/test/bin/onos-check-logs b/tools/test/bin/onos-check-logs
new file mode 100755
index 0000000..19091ec
--- /dev/null
+++ b/tools/test/bin/onos-check-logs
@@ -0,0 +1,13 @@
+#!/bin/bash
+#-------------------------------------------------------------------------------
+# Checks the logs of the remote ONOS instance and makes sure they are clean.
+#-------------------------------------------------------------------------------
+
+[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
+. $ONOS_ROOT/tools/build/envDefaults
+
+remote=$ONOS_USER@${1:-$OCI}
+
+LOG=$ONOS_INSTALL_DIR/log/karaf.log
+
+ssh $remote "egrep 'ERROR|Exception' $LOG"
diff --git a/tools/test/bin/onos-test b/tools/test/bin/onos-test
deleted file mode 100755
index c5e8356..0000000
--- a/tools/test/bin/onos-test
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-#-------------------------------------------------------------------------------
-# Launches the ONOS tests on the current cell environment.
-#-------------------------------------------------------------------------------
-
-[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
-. $ONOS_ROOT/tools/build/envDefaults
-
-nodes=$(env | sort | egrep "OC[0-9]+" | cut -d= -f2)
-
-onos-package
-for node in $nodes; do printf "%s: " $node; onos-install -f $node; done
-for node in $nodes; do onos-wait-for-start $node; done