소스 검색

HPCC-11408 ecl-test run --target=roxie doesn't use the archive

Add fix this problem.

Signed-off-by: Attila Vamos <attila.vamos@gmail.com>

Conflicts:

	testing/regress/ecl-test
Attila Vamos 11 년 전
부모
커밋
c1b1c71b60
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      testing/regress/ecl-test
  2. 1 1
      testing/regress/hpcc/regression/suite.py
  3. 1 1
      testing/regress/hpcc/util/ecl/command.py

+ 1 - 1
testing/regress/ecl-test

@@ -32,7 +32,7 @@ from hpcc.util.ecl.file import ECLFile
 from hpcc.util.util import checkPqParam,  getVersionNumbers
 from hpcc.common.error import Error
 
-prog_version = "0.0.16"
+prog_version = "0.0.19"
 
 # For coverage
 if ('coverage' in os.environ) and (os.environ['coverage'] == '1'):

+ 1 - 1
testing/regress/hpcc/regression/suite.py

@@ -80,7 +80,7 @@ class Suite:
                     self.exclude.append(format(file, "25")+" skipped (reason:"+skipResult['reason']+")");
 
                 if eclfile.testPublish():
-                    self.publish.append(file)
+                    self.publish.append(eclfile.getBaseEcl())
 
     def testPublish(self, ecl):
         if ecl in self.publish:

+ 1 - 1
testing/regress/hpcc/util/ecl/command.py

@@ -49,7 +49,7 @@ class ECLcmd(Shell):
             args.append("--password=" + password)
 
         if cmd == 'publish':
-            args.append(eclfile.getEcl())
+            args.append(eclfile.getArchive())
         else:
             args.append('--noroot')
             server = kwargs.pop('server', False)