Skip to content
Snippets Groups Projects
Commit 3a003e3b authored by Marco Clemencic's avatar Marco Clemencic
Browse files

hack to prevent escape sequences in output of tests on SLC6

From: Marco Clemencic <marco.clemencic@cern.ch>


git-svn-id: svn+ssh://svn.cern.ch/reps/gaudi/Gaudi/trunk@6921 53ecefc3-a64d-0410-9bdf-b8581fa3287e
parent f2340dda
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@ package GaudiPolicy
package manager: Marco Clemencic
============================= GaudiPolicy v12r1 ==============================
! 2012-06-19 - Marco Clemencic
- Small hack in GaudiTest.py to prevent spurious escape sequences in teh output
of some Python tests on SLC6.
! 2012-06-08 - Marco Clemencic
- Fixed configuration problem for the special platform *-g11max-*.
- Added CMake configuration files.
......
......@@ -1484,6 +1484,9 @@ class GaudiExeTest(ExecTestBase):
# Construct the environment.
environment = self.MakeEnvironment(context)
# FIXME: whithout this, we get some spurious '\x1b[?1034' in the std out on SLC6
if "slc6" in environment.get('CMTCONFIG', ''):
environment['TERM'] = 'dumb'
# Create the executable.
if self.timeout >= 0:
timeout = self.timeout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment