Skip to content

Commit 65701e3

Browse files
vitalybukayuxuanchen1997
authored andcommitted
[NFC][fuzzer] Remove unhelpful lit notes
They are not actionable.
1 parent b97765a commit 65701e3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

compiler-rt/test/fuzzer/lit.cfg.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,18 @@
3333
):
3434
lit_config.note("lsan feature unavailable")
3535
else:
36-
lit_config.note("lsan feature available")
3736
config.available_features.add("lsan")
3837

3938
# MemorySanitizer is not supported on OSX or Windows right now
4039
if (
4140
sys.platform.startswith("darwin")
4241
or sys.platform.startswith("win")
43-
or config.target_arch == "i386"
4442
):
4543
lit_config.note("msan feature unavailable")
4644
assert "msan" not in config.available_features
45+
elif config.target_arch == "i386":
46+
assert "msan" not in config.available_features
4747
else:
48-
lit_config.note("msan feature available")
4948
config.available_features.add("msan")
5049

5150
if sys.platform.startswith("win") or sys.platform.startswith("cygwin"):
@@ -57,10 +56,7 @@
5756
if sys.platform.startswith("linux"):
5857
# Note the value of ``sys.platform`` is not consistent
5958
# between python 2 and 3, hence the use of ``.startswith()``.
60-
lit_config.note("linux feature available")
6159
config.available_features.add("linux")
62-
else:
63-
lit_config.note("linux feature unavailable")
6460

6561
if config.arm_thumb:
6662
config.available_features.add("thumb")

0 commit comments

Comments
 (0)