mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
utils/lit/lit/TestingConfig.py: Split out environment vars for Win32.
llvm-svn: 138191
This commit is contained in:
parent
1adacca2e5
commit
2d13692fbd
@ -1,4 +1,5 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
class TestingConfig:
|
||||
""""
|
||||
@ -14,12 +15,16 @@ class TestingConfig:
|
||||
'LD_LIBRARY_PATH' : os.environ.get('LD_LIBRARY_PATH',''),
|
||||
'PATH' : os.pathsep.join(litConfig.path +
|
||||
[os.environ.get('PATH','')]),
|
||||
'PATHEXT' : os.environ.get('PATHEXT',''),
|
||||
'SYSTEMROOT' : os.environ.get('SYSTEMROOT',''),
|
||||
'LLVM_DISABLE_CRT_DEBUG' : '1',
|
||||
'PYTHONUNBUFFERED' : '1',
|
||||
}
|
||||
|
||||
if sys.platform == 'win32':
|
||||
environment.update({
|
||||
'LLVM_DISABLE_CRT_DEBUG' : '1',
|
||||
'PATHEXT' : os.environ.get('PATHEXT',''),
|
||||
'PYTHONUNBUFFERED' : '1',
|
||||
})
|
||||
|
||||
config = TestingConfig(parent,
|
||||
name = '<unnamed>',
|
||||
suffixes = set(),
|
||||
|
Loading…
Reference in New Issue
Block a user