aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/erl2html2.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-08-31 11:47:28 +0200
committerBjörn Gustavsson <[email protected]>2016-08-31 11:47:28 +0200
commitee8f2380837321fef4975522bfa53cb9161874ac (patch)
tree1d2d854cd2b5a4a5b8d4c605a9de924e582cb9f9 /lib/common_test/src/erl2html2.erl
parentbba0f5924fa9478d41903331a3285f117c112731 (diff)
parent362bccfd7d2bcb15e5c62cb17d31442713a5a20b (diff)
downloadotp-ee8f2380837321fef4975522bfa53cb9161874ac.tar.gz
otp-ee8f2380837321fef4975522bfa53cb9161874ac.tar.bz2
otp-ee8f2380837321fef4975522bfa53cb9161874ac.zip
Merge branch 'bjorn/fix-make/OTP-13855' into maint
* bjorn/fix-make/OTP-13855: make, ct_make: Handle warning attributes in source files
Diffstat (limited to 'lib/common_test/src/erl2html2.erl')
-rw-r--r--lib/common_test/src/erl2html2.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common_test/src/erl2html2.erl b/lib/common_test/src/erl2html2.erl
index e819f345de..7f3eb699de 100644
--- a/lib/common_test/src/erl2html2.erl
+++ b/lib/common_test/src/erl2html2.erl
@@ -130,6 +130,8 @@ parse_preprocessed_file(Epp, File, InCorrectFile) ->
throw({error,Reason,InCorrectFile});
{error,_Reason} ->
parse_preprocessed_file(Epp, File, InCorrectFile);
+ {warning,_} ->
+ parse_preprocessed_file(Epp, File, InCorrectFile);
{eof,_Location} ->
[]
end.