diff options
Diffstat (limited to 'lld/test/lit.cfg.py')
-rw-r--r-- | lld/test/lit.cfg.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lld/test/lit.cfg.py b/lld/test/lit.cfg.py index f8436cab613..ae0dd187c60 100644 --- a/lld/test/lit.cfg.py +++ b/lld/test/lit.cfg.py @@ -91,11 +91,3 @@ if tar_executable: if 'GNU tar' in tar_version.stdout.read().decode(): config.available_features.add('gnutar') tar_version.wait() - -stat_executable = lit.util.which('stat', config.environment['PATH']) -if stat_executable: - stat_version = subprocess.Popen( - [stat_executable, '--version'], stdout=subprocess.PIPE, env={'LANG': 'C'}) - if 'GNU coreutils' in stat_version.stdout.read().decode(): - config.available_features.add('gnustat') - stat_version.wait() |