Mesa (master): llvmpipe: Call util_cpu_detect() from the unit tests.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Oct 22 18:12:28 UTC 2009


Module: Mesa
Branch: master
Commit: a07437f8a6a863654487c5586cbd02bfc20f0a3b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a07437f8a6a863654487c5586cbd02bfc20f0a3b

Author: José Fonseca <jfonseca at vmware.com>
Date:   Thu Oct 22 18:10:19 2009 +0100

llvmpipe: Call util_cpu_detect() from the unit tests.

---

 src/gallium/drivers/llvmpipe/lp_test_format.c |    3 +++
 src/gallium/drivers/llvmpipe/lp_test_main.c   |    4 ++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_test_format.c b/src/gallium/drivers/llvmpipe/lp_test_format.c
index ab80c01..5dc8297 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_format.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_format.c
@@ -35,6 +35,7 @@
 #include <llvm-c/Target.h>
 #include <llvm-c/Transforms/Scalar.h>
 
+#include "util/u_cpu_detect.h"
 #include "util/u_format.h"
 
 #include "lp_bld_format.h"
@@ -263,6 +264,8 @@ int main(int argc, char **argv)
    LLVMInitializeNativeTarget();
 #endif
 
+   util_cpu_detect();
+
    for (i = 0; i < sizeof(test_cases)/sizeof(test_cases[0]); ++i)
       if(!test_format(&test_cases[i]))
         ret = 1;
diff --git a/src/gallium/drivers/llvmpipe/lp_test_main.c b/src/gallium/drivers/llvmpipe/lp_test_main.c
index f07fa25..d4767ff 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_main.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_main.c
@@ -34,6 +34,8 @@
  */
 
 
+#include "util/u_cpu_detect.h"
+
 #include "lp_bld_const.h"
 #include "lp_test.h"
 
@@ -370,6 +372,8 @@ int main(int argc, char **argv)
    LLVMInitializeNativeTarget();
 #endif
 
+   util_cpu_detect();
+
    if(fp) {
       /* Warm up the caches */
       test_some(0, NULL, 100);




More information about the mesa-commit mailing list