hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
miniBAT.py
Go to the documentation of this file.
1 #!/usr/bin/python
2 
3 import os
4 
5 ret = True
6 
7 #-----------------------------------------------------------
8 # CldPluginTest test
9 #
10 CURRENT_DIR = os.path.dirname(__file__)
11 file_path = os.path.join(CURRENT_DIR, 'CldPluginTest/miniBAT.py')
12 ret = os.system("python " + file_path)
13 print ("CldPluginTest: ", ret)
14 
15 #-----------------------------------------------------------
16 # cppunit test
17 #
18 CURRENT_DIR = os.path.dirname(__file__)
19 file_path = os.path.join(CURRENT_DIR, 'cppunit/test')
20 ret = os.system(file_path)
21 print ("cppunit test: ", ret)