2012-06-25 20:58:09 +04:00
|
|
|
/*
|
2016-09-02 00:32:49 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2012-06-25 20:58:09 +04:00
|
|
|
*
|
2016-09-02 00:32:49 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
|
|
|
*/
|
|
|
|
|
2012-06-25 20:58:09 +04:00
|
|
|
#include <string>
|
2015-07-30 00:51:36 +03:00
|
|
|
|
|
|
|
#include "third_party/googletest/src/include/gtest/gtest.h"
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "./aom_config.h"
|
2012-12-23 19:20:10 +04:00
|
|
|
#if ARCH_X86 || ARCH_X86_64
|
2016-08-23 02:08:15 +03:00
|
|
|
#include "aom_ports/x86.h"
|
2012-12-23 19:20:10 +04:00
|
|
|
#endif
|
2014-01-19 01:03:31 +04:00
|
|
|
extern "C" {
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1
|
|
|
|
extern void av1_rtcd();
|
|
|
|
#endif // CONFIG_AV1
|
|
|
|
extern void aom_dsp_rtcd();
|
|
|
|
extern void aom_scale_rtcd();
|
2012-06-25 20:58:09 +04:00
|
|
|
}
|
|
|
|
|
2015-09-01 22:47:43 +03:00
|
|
|
#if ARCH_X86 || ARCH_X86_64
|
2014-01-11 07:08:44 +04:00
|
|
|
static void append_negative_gtest_filter(const char *str) {
|
2012-06-25 20:58:09 +04:00
|
|
|
std::string filter = ::testing::FLAGS_gtest_filter;
|
2014-01-11 07:08:44 +04:00
|
|
|
// Negative patterns begin with one '-' followed by a ':' separated list.
|
|
|
|
if (filter.find('-') == std::string::npos) filter += '-';
|
2012-06-25 20:58:09 +04:00
|
|
|
filter += str;
|
|
|
|
::testing::FLAGS_gtest_filter = filter;
|
|
|
|
}
|
2015-09-01 22:47:43 +03:00
|
|
|
#endif // ARCH_X86 || ARCH_X86_64
|
2012-06-25 20:58:09 +04:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
|
|
|
#if ARCH_X86 || ARCH_X86_64
|
2012-06-22 22:53:04 +04:00
|
|
|
const int simd_caps = x86_simd_caps();
|
2016-08-12 03:46:05 +03:00
|
|
|
if (!(simd_caps & HAS_MMX)) append_negative_gtest_filter(":MMX.*:MMX/*");
|
|
|
|
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/*");
|
2012-07-14 02:21:29 +04:00
|
|
|
if (!(simd_caps & HAS_SSSE3))
|
2015-05-16 21:52:59 +03:00
|
|
|
append_negative_gtest_filter(":SSSE3.*:SSSE3/*");
|
2012-07-14 02:21:29 +04:00
|
|
|
if (!(simd_caps & HAS_SSE4_1))
|
2015-05-16 21:52:59 +03:00
|
|
|
append_negative_gtest_filter(":SSE4_1.*:SSE4_1/*");
|
2016-08-12 03:46:05 +03:00
|
|
|
if (!(simd_caps & HAS_AVX)) append_negative_gtest_filter(":AVX.*:AVX/*");
|
|
|
|
if (!(simd_caps & HAS_AVX2)) append_negative_gtest_filter(":AVX2.*:AVX2/*");
|
2015-09-01 22:47:43 +03:00
|
|
|
#endif // ARCH_X86 || ARCH_X86_64
|
2012-06-25 20:58:09 +04:00
|
|
|
|
2012-12-23 19:20:10 +04:00
|
|
|
#if !CONFIG_SHARED
|
2013-09-05 19:45:56 +04:00
|
|
|
// Shared library builds don't support whitebox tests
|
|
|
|
// that exercise internal symbols.
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1
|
|
|
|
av1_rtcd();
|
|
|
|
#endif // CONFIG_AV1
|
|
|
|
aom_dsp_rtcd();
|
|
|
|
aom_scale_rtcd();
|
2015-04-15 16:27:00 +03:00
|
|
|
#endif // !CONFIG_SHARED
|
2012-12-07 01:56:25 +04:00
|
|
|
|
2012-06-25 20:58:09 +04:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|