Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e3b1662

Browse files
committedSep 20, 2023
[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)
Please sign in to comment.