about summary refs log tree commit diff homepage
path: root/test/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index fb479a86..0942a057 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -186,13 +186,17 @@ else:
 # Zlib
 config.available_features.add('zlib' if config.enable_zlib else 'not-zlib')
 
+# Uclibc
+if config.enable_uclibc:
+  config.available_features.add('uclibc')
+
 # POSIX runtime feature
 if config.enable_posix_runtime:
   config.available_features.add('posix-runtime')
 
 # LibC++ runtime feature
 if config.enable_libcxx:
-  config.available_features.add('{}libcxx'.format('' if config.enable_libcxx else 'not-'))
+  config.available_features.add('libcxx')
 
 # Target operating system features
 supported_targets = ['linux', 'darwin', 'freebsd']