summaryrefslogtreecommitdiff
path: root/utests/utest.cpp
diff options
context:
space:
mode:
authorZhigang Gong <zhigang.gong@intel.com>2014-01-09 17:36:37 +0800
committerZhigang Gong <zhigang.gong@intel.com>2014-01-16 10:30:40 +0800
commit6bf0c4457d9977db168e0f24d6ce39dd0cbe2a5f (patch)
tree71fdd77ffbd9539a822a1336a8b911953c6f616e /utests/utest.cpp
parent70d068d8da417a5a52a79785b51848ee3e408850 (diff)
downloadbeignet-6bf0c4457d9977db168e0f24d6ce39dd0cbe2a5f.tar.gz
Refine the method to find pch and pcm files.
When compile user kernels, we need to find the precompiled header file and the precompiled module file. The previous implementation will find the build directory then find the system directory. This is not elegant when it is packaged to a distro. It doesn't need to search the build directory. So I change the default search path to the system directory only. And for the deveoper, I change the build script to set a proper environment variable and make the gbe bin generator and the utest could find the local pch files and pcm files firstly. The only change is now, after the build process. Before the user run the utests, it need to set up the environment firstly. Just invoke . utest/setenv.sh. Then everything should be the same as previous. This setenv.sh also set the OCL_KERNEL_PATH, so you don't need to set it manually now. This patch also update the document. v2: add the missing setenv.sh. Signed-off-by: Zhigang Gong <zhigang.gong@intel.com> Tested-by: "Song, Ruiling" <ruiling.song@intel.com>
Diffstat (limited to 'utests/utest.cpp')
-rw-r--r--utests/utest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/utests/utest.cpp b/utests/utest.cpp
index 6d51598a..718916f1 100644
--- a/utests/utest.cpp
+++ b/utests/utest.cpp
@@ -41,8 +41,6 @@ UTest::UTest(Function fn, const char *name, bool haveIssue, bool needDestroyProg
utestList->push_back(*this);
}
-UTest::UTest(void) : fn(NULL), name(NULL), haveIssue(false) {}
-
static bool strequal(const char *s1, const char *s2) {
if (strcmp(s1, s2) == 0) return true;
return false;