summaryrefslogtreecommitdiff
path: root/test/test_libvpx.cc
diff options
context:
space:
mode:
authorclang-format <noreply@google.com>2016-08-04 19:28:34 -0700
committerJames Zern <jzern@google.com>2016-08-05 20:02:28 -0700
commit9c9d92ae3a7c70adff71e04bae14a1e1394693f5 (patch)
treeec34927f5e0511588cccc2920b4641b57f590d99 /test/test_libvpx.cc
parent57f49db81f43df38421091eff3061ba6f9ecd9b1 (diff)
downloadlibvpx-9c9d92ae3a7c70adff71e04bae14a1e1394693f5.tar
libvpx-9c9d92ae3a7c70adff71e04bae14a1e1394693f5.tar.gz
libvpx-9c9d92ae3a7c70adff71e04bae14a1e1394693f5.tar.bz2
libvpx-9c9d92ae3a7c70adff71e04bae14a1e1394693f5.zip
test: apply clang-tidy google-readability-braces-around-statements
applied against a x86_64 configure with and without --enable-vp9-highbitdepth clang-tidy-3.7.1 \ -checks='-*,google-readability-braces-around-statements' \ -header-filter='.*' -fix + clang-format afterward Change-Id: Ia2993ec64cf1eb3505d3bfb39068d9e44cfbce8d
Diffstat (limited to 'test/test_libvpx.cc')
-rw-r--r--test/test_libvpx.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_libvpx.cc b/test/test_libvpx.cc
index 120e0e17b..8a70b4e28 100644
--- a/test/test_libvpx.cc
+++ b/test/test_libvpx.cc
@@ -45,10 +45,12 @@ int main(int argc, char **argv) {
if (!(simd_caps & HAS_SSE)) append_negative_gtest_filter(":SSE.*:SSE/*");
if (!(simd_caps & HAS_SSE2)) append_negative_gtest_filter(":SSE2.*:SSE2/*");
if (!(simd_caps & HAS_SSE3)) append_negative_gtest_filter(":SSE3.*:SSE3/*");
- if (!(simd_caps & HAS_SSSE3))
+ if (!(simd_caps & HAS_SSSE3)) {
append_negative_gtest_filter(":SSSE3.*:SSSE3/*");
- if (!(simd_caps & HAS_SSE4_1))
+ }
+ if (!(simd_caps & HAS_SSE4_1)) {
append_negative_gtest_filter(":SSE4_1.*:SSE4_1/*");
+ }
if (!(simd_caps & HAS_AVX)) append_negative_gtest_filter(":AVX.*:AVX/*");
if (!(simd_caps & HAS_AVX2)) append_negative_gtest_filter(":AVX2.*:AVX2/*");
#endif // ARCH_X86 || ARCH_X86_64