kfdtest: Remove IsaGen from KFDExceptionTest

Replace with LLVM-based Assembler.

Signed-off-by: Graham Sider <Graham.Sider@amd.com>
Change-Id: Ia64b8cc77382773b48de576d350bbed3c1efdb74
This commit is contained in:
Graham Sider
2021-09-30 18:33:06 -04:00
committed by Harish Kasiviswanathan
parent 780f0b618c
commit 4c7cf6e7d2
2 changed files with 3 additions and 11 deletions
+1 -4
View File
@@ -26,12 +26,11 @@
#include <gtest/gtest.h>
#include "IsaGenerator.hpp"
#include "KFDBaseComponentTest.hpp"
class KFDExceptionTest : public KFDBaseComponentTest {
public:
KFDExceptionTest() :m_pIsaGen(NULL), m_ChildPid(-1) {
KFDExceptionTest() : m_ChildPid(-1) {
/* Because there could be early return before m_ChildPid is set
* by fork(), we should initialize m_ChildPid to a non-zero value
* to avoid possible exit of the main process.
@@ -59,8 +58,6 @@ class KFDExceptionTest : public KFDBaseComponentTest {
protected: // Members
pid_t m_ChildPid;
HSAKMT_STATUS m_ChildStatus;
IsaGenerator* m_pIsaGen;
};
#endif // __KFD_EXCEPTION_TEST__H__