Minor changes for TestON startup compatibility
diff --git a/TestON/tests/ONOSNextTest/ONOSNextTest.py b/TestON/tests/ONOSNextTest/ONOSNextTest.py
old mode 100644
new mode 100755
index def2a89..cc38a8c
--- a/TestON/tests/ONOSNextTest/ONOSNextTest.py
+++ b/TestON/tests/ONOSNextTest/ONOSNextTest.py
@@ -2,6 +2,10 @@
 #Testing the basic functionality of ONOS Next
 #For sanity and driver functionality excercises only.
 
+import time
+import sys
+import os
+
 class ONOSNextTest:
     def __init__(self):
         self.default = ''
@@ -17,5 +21,14 @@
         onos-install -f
         onos-wait-for-start
         '''
+        
+        
+        install_result = main.ONOSbench.clean_install()
+        package_result = main.ONOSbench.onos_package()
+
+        print install_result
+        print package_result
+        print (install_result and package_result)
+