Skip to content

Commit e3b1662

Browse files
committed
[libc++] Sort available features before printing them
This makes it easier to compare the features available in two adjacent runs of lit.
1 parent 27d4f22 commit e3b1662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/libcxx/test/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ def configure(parameters, features, config, lit_config):
5252
note("Using {} substitution: '{}'".format(sub, _getSubstitution(sub, config)))
5353

5454
# Print all available features
55-
note("All available features: {}".format(", ".join(config.available_features)))
55+
note("All available features: {}".format(", ".join(sorted(config.available_features))))

0 commit comments

Comments
 (0)