mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 10:17:36 +00:00
[orc] Add a trivial unit test to get the ball rolling
I made my best guess at the Makefile, since I don't have a make build. I'm not sure if it should be valid to add an empty list of things, but it seemed the sort of degenerate case. llvm-svn: 230196
This commit is contained in:
parent
5ce7bb3582
commit
4639d7a7ec
@ -19,6 +19,7 @@
|
||||
#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
|
||||
#include "llvm/IR/GlobalValue.h"
|
||||
#include "llvm/IR/Mangler.h"
|
||||
#include "llvm/IR/Module.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include <list>
|
||||
|
||||
|
@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
|
||||
ExecutionEngine
|
||||
Interpreter
|
||||
MC
|
||||
OrcJIT
|
||||
RuntimeDyld
|
||||
Support
|
||||
)
|
||||
@ -11,6 +12,8 @@ add_llvm_unittest(ExecutionEngineTests
|
||||
ExecutionEngineTest.cpp
|
||||
)
|
||||
|
||||
add_subdirectory(Orc)
|
||||
|
||||
# Include MCJIT tests only if native arch is a built JIT target.
|
||||
list(FIND LLVM_TARGETS_TO_BUILD "${LLVM_NATIVE_ARCH}" build_idx)
|
||||
list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" jit_idx)
|
||||
|
@ -13,8 +13,10 @@ LINK_COMPONENTS :=interpreter
|
||||
|
||||
include $(LEVEL)/Makefile.config
|
||||
|
||||
PARALLEL_DIRS = Orc
|
||||
|
||||
ifeq ($(TARGET_HAS_JIT),1)
|
||||
PARALLEL_DIRS = MCJIT
|
||||
PARALLEL_DIRS = $(PARALLEL_DIRS) MCJIT
|
||||
endif
|
||||
|
||||
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|
||||
|
8
unittests/ExecutionEngine/Orc/CMakeLists.txt
Normal file
8
unittests/ExecutionEngine/Orc/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
Core
|
||||
Support
|
||||
)
|
||||
|
||||
add_llvm_unittest(OrcJITTests
|
||||
LazyEmittingLayerTest.cpp
|
||||
)
|
30
unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
Normal file
30
unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
//===- LazyEmittingLayerTest.cpp - Unit tests for the lazy emitting layer -===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ExecutionEngine/Orc/LazyEmittingLayer.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
namespace {
|
||||
|
||||
struct MockBaseLayer {
|
||||
typedef int ModuleSetHandleT;
|
||||
ModuleSetHandleT addModuleSet(std::list<std::unique_ptr<llvm::Module>>,
|
||||
std::unique_ptr<llvm::RTDyldMemoryManager> x) {
|
||||
EXPECT_FALSE(x);
|
||||
return 42;
|
||||
}
|
||||
};
|
||||
|
||||
TEST(LazyEmittingLayerTest, Empty) {
|
||||
MockBaseLayer M;
|
||||
llvm::orc::LazyEmittingLayer<MockBaseLayer> L(M);
|
||||
L.addModuleSet(std::list<std::unique_ptr<llvm::Module>>(), nullptr);
|
||||
}
|
||||
|
||||
}
|
16
unittests/ExecutionEngine/Orc/Makefile
Normal file
16
unittests/ExecutionEngine/Orc/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
##===- unittests/ExecutionEngine/Orc/Makefile --------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file is distributed under the University of Illinois Open Source
|
||||
# License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../../..
|
||||
TESTNAME = OrcJIT
|
||||
LINK_COMPONENTS := core ipo mcjit orcjit native support
|
||||
|
||||
include $(LEVEL)/Makefile.config
|
||||
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|
||||
|
Loading…
Reference in New Issue
Block a user