Skip to content

Commit 705a9f7

Browse files
committed
Mark rpmlint warnings as info
Need testing-farm to not report the test as failed when warn status Signed-off-by: Cristian Le <[email protected]>
1 parent 7831c84 commit 705a9f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/rpmlint/rpmlint.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ else
6060
if (( error_count > 0 )); then
6161
result=fail
6262
elif (( warning_count > 0 )); then
63-
result=warn
63+
# TODO: Switch result to warn when testing-farm supports it
64+
result=info
6465
elif (( badness_count > 0 )); then
6566
result=info
6667
else

0 commit comments

Comments
 (0)