diff --git a/tests/treble_sepolicy_tests.py b/tests/treble_sepolicy_tests.py index f2d600ad5a403989c926fadb94864c581b3dca8c..0851d3b5db4cea7b21c88745b2f29d5590b8d309 100644 --- a/tests/treble_sepolicy_tests.py +++ b/tests/treble_sepolicy_tests.py @@ -242,7 +242,10 @@ def TestNoUnmappedNewTypes(): ret += "policy without an entry into the compatibility mapping file(s) " ret += "found in private/compat/V.v/V.v[.ignore].cil, where V.v is the " ret += "latest API level.\n" - ret += " ".join(str(x) for x in sorted(violators)) + "\n" + ret += " ".join(str(x) for x in sorted(violators)) + "\n\n" + ret += "See examples of how to fix this:\n" + ret += "https://android-review.git.corp.google.com/c/platform/system/sepolicy/+/781036\n" + ret += "https://android-review.git.corp.google.com/c/platform/system/sepolicy/+/852612\n" return ret ### @@ -265,7 +268,9 @@ def TestNoUnmappedRmTypes(): ret += "policy without a declaration in the compatibility mapping " ret += "found in private/compat/V.v/V.v[.ignore].cil, where V.v is the " ret += "latest API level.\n" - ret += " ".join(str(x) for x in sorted(violators)) + "\n" + ret += " ".join(str(x) for x in sorted(violators)) + "\n\n" + ret += "See examples of how to fix this:\n" + ret += "https://android-review.git.corp.google.com/c/platform/system/sepolicy/+/822743\n" return ret def TestTrebleCompatMapping():