Browse Source

HPCC-22168 The "list --runtest --createEclRunArg" function of Regression Test Engine cause crash.

Add missing parameters

Tested manually

Signed-off-by: Attila Vamos <attila.vamos@gmail.com>
Attila Vamos 6 years ago
parent
commit
7b5a963ffd
1 changed files with 2 additions and 0 deletions
  1. 2 0
      testing/regress/ecl-test

+ 2 - 0
testing/regress/ecl-test

@@ -60,7 +60,9 @@ class RegressMain:
         elif self.args.runtests:
             print "Run test cases: "
             for engine in self.regress.config.Engines:
+                self.args.engine = engine
                 cluster = self.regress.config.Clusters[engine]
+                self.args.cluster = cluster
                 self.regress.bootstrap(engine, cluster, self.args)
                 print("Cluster: %s" % (cluster))
                 suite = self.regress.suites[engine]