Index: test/lit.cfg =================================================================== --- test/lit.cfg +++ test/lit.cfg @@ -427,6 +427,10 @@ if not re.match(r'.*-(cygwin)$', config.target_triple): config.available_features.add('clang-driver') +# Set on linux environment +if re.match(r'.*-linux', config.target_triple): + config.available_features.add("linux") + # [PR18856] Depends to remove opened file. On win32, a file could be removed # only if all handles were closed. if platform.system() not in ['Windows']: