diff options
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 4563011773..1180f72f5b 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -238,7 +238,7 @@ if is_filesystem_case_insensitive(): config.available_features.add('case-insensitive-filesystem') # Tests that require the /dev/fd filesystem. -if False and os.path.exists("/dev/fd/0"): +if os.path.exists("/dev/fd/0"): config.available_features.add('dev-fd-fs') # [PR8833] LLP64-incompatible tests |