Commit 7f6b3674 by Raul Tambre Committed by Commit Bot

Disable null pointer arithmetic warnings for GLES1 conformance tests

Required for the rest of Chromium to compile with the warning enabled. Bug: chromium:766891 Change-Id: Ie319df01599434011dc953532a30ad68d6a7c9a3 Reviewed-on: https://chromium-review.googlesource.com/c/1390659 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 84412860
...@@ -363,6 +363,9 @@ if (build_angle_gles1_conform_tests) { ...@@ -363,6 +363,9 @@ if (build_angle_gles1_conform_tests) {
"-Wno-unused-const-variable", "-Wno-unused-const-variable",
"-Wno-unused-variable", "-Wno-unused-variable",
"-Wno-int-to-pointer-cast", "-Wno-int-to-pointer-cast",
# Upstream tests do null pointer arithmetic, so disable those warnings.
"-Wno-null-pointer-arithmetic",
] ]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment