Try passing env via __init__
This commit is contained in:
parent
1cff039d16
commit
f98daa0486
1 changed files with 2 additions and 1 deletions
|
@ -823,6 +823,7 @@ BuildBot halt on failure."""
|
||||||
steps.ShellCommand.__init__ (self, decodeRC = { 0 : SUCCESS,
|
steps.ShellCommand.__init__ (self, decodeRC = { 0 : SUCCESS,
|
||||||
1 : SUCCESS,
|
1 : SUCCESS,
|
||||||
2 : SUCCESS },
|
2 : SUCCESS },
|
||||||
|
env = test_env,
|
||||||
**kwargs)
|
**kwargs)
|
||||||
|
|
||||||
self.workdir = util.Interpolate ("%(prop:builddir)s/build/gdb/testsuite")
|
self.workdir = util.Interpolate ("%(prop:builddir)s/build/gdb/testsuite")
|
||||||
|
@ -830,7 +831,7 @@ BuildBot halt on failure."""
|
||||||
'-k',
|
'-k',
|
||||||
'check'] + extra_make_check_flags
|
'check'] + extra_make_check_flags
|
||||||
|
|
||||||
self.env = test_env
|
# self.env = test_env
|
||||||
# Needed because of dejagnu
|
# Needed because of dejagnu
|
||||||
self.haltOnFailure = False
|
self.haltOnFailure = False
|
||||||
self.flunkOnFailure = False
|
self.flunkOnFailure = False
|
||||||
|
|
Loading…
Reference in a new issue