summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/CppunitTest_tools_test.mk5
-rw-r--r--tools/qa/cppunit/test_cpuid.cxx16
2 files changed, 1 insertions, 20 deletions
diff --git a/tools/CppunitTest_tools_test.mk b/tools/CppunitTest_tools_test.mk
index 65f6d02fd782..5672be53353f 100644
--- a/tools/CppunitTest_tools_test.mk
+++ b/tools/CppunitTest_tools_test.mk
@@ -30,10 +30,7 @@ $(eval $(call gb_CppunitTest_add_exception_objects,tools_test, \
tools/qa/cppunit/test_fround \
tools/qa/cppunit/test_xmlwalker \
tools/qa/cppunit/test_GenericTypeSerializer \
-))
-
-$(eval $(call gb_CppunitTest_add_exception_objects,tools_test,\
- tools/qa/cppunit/test_cpuid, $(INTRINSICS_CXXFLAGS) \
+ tools/qa/cppunit/test_cpuid \
))
$(eval $(call gb_CppunitTest_use_sdk_api,tools_test))
diff --git a/tools/qa/cppunit/test_cpuid.cxx b/tools/qa/cppunit/test_cpuid.cxx
index fdb19d0ec133..cb9c1b9a7fb6 100644
--- a/tools/qa/cppunit/test_cpuid.cxx
+++ b/tools/qa/cppunit/test_cpuid.cxx
@@ -12,7 +12,6 @@
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>
#include <tools/cpuid.hxx>
-#include <tools/simd.hxx>
#include <rtl/ustring.hxx>
namespace
@@ -50,21 +49,6 @@ void CpuInstructionSetSupport::testCpuInstructionSetSupport()
{
CPPUNIT_ASSERT(aString.indexOf("AVX2") > 0);
}
-
-#ifdef LO_SSE2_AVAILABLE
- CPPUNIT_ASSERT_EQUAL(cpuid::hasSSE2(),
- cpuid::isCpuInstructionSetSupported(cpuid::InstructionSetFlags::SSE2));
-#endif
-
-#ifdef LO_SSSE3_AVAILABLE
- CPPUNIT_ASSERT_EQUAL(cpuid::hasSSSE3(),
- cpuid::isCpuInstructionSetSupported(cpuid::InstructionSetFlags::SSE2));
-#endif
-
-#ifdef LO_AVX2_AVAILABLE
- CPPUNIT_ASSERT_EQUAL(cpuid::hasAVX2(),
- cpuid::isCpuInstructionSetSupported(cpuid::InstructionSetFlags::AVX2));
-#endif
}
CPPUNIT_TEST_SUITE_REGISTRATION(CpuInstructionSetSupport);