2013-05-31 07:17:58 +08:00
|
|
|
//===- lld/unittest/WinLinkDriverTest.cpp ---------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief Windows link.exe driver tests.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-05-31 10:12:34 +08:00
|
|
|
#include "DriverTest.h"
|
2013-05-31 07:17:58 +08:00
|
|
|
|
2013-08-07 06:31:59 +08:00
|
|
|
#include "lld/ReaderWriter/PECOFFLinkingContext.h"
|
2013-05-31 07:17:58 +08:00
|
|
|
#include "llvm/Support/COFF.h"
|
|
|
|
|
2013-07-19 09:38:49 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2013-05-31 07:17:58 +08:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace lld;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2013-08-07 06:31:59 +08:00
|
|
|
class WinLinkParserTest
|
|
|
|
: public ParserTest<WinLinkDriver, PECOFFLinkingContext> {
|
2013-05-31 07:17:58 +08:00
|
|
|
protected:
|
2013-08-07 06:31:59 +08:00
|
|
|
virtual const LinkingContext *linkingContext() { return &_context; }
|
2013-05-31 07:17:58 +08:00
|
|
|
};
|
|
|
|
|
2013-05-31 10:12:34 +08:00
|
|
|
TEST_F(WinLinkParserTest, Basic) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:console", "/out:a.exe",
|
2013-09-12 13:09:01 +08:00
|
|
|
"-entry:start", "a.obj", "b.obj", "c.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI, _context.getSubsystem());
|
2013-09-13 03:46:53 +08:00
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_FILE_MACHINE_I386, _context.getMachineType());
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ("a.exe", _context.outputPath());
|
|
|
|
EXPECT_EQ("_start", _context.entrySymbolName());
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_EQ(3, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
EXPECT_EQ("b.obj", inputFile(1));
|
|
|
|
EXPECT_EQ("c.obj", inputFile(2));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.getInputSearchPaths().empty());
|
2013-07-23 09:29:50 +08:00
|
|
|
|
|
|
|
// Unspecified flags will have default values.
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(6, _context.getMinOSVersion().majorVersion);
|
|
|
|
EXPECT_EQ(0, _context.getMinOSVersion().minorVersion);
|
|
|
|
EXPECT_EQ(0x400000U, _context.getBaseAddress());
|
|
|
|
EXPECT_EQ(1024 * 1024U, _context.getStackReserve());
|
|
|
|
EXPECT_EQ(4096U, _context.getStackCommit());
|
2013-09-24 03:52:35 +08:00
|
|
|
EXPECT_EQ(4096U, _context.getSectionAlignment());
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_FALSE(_context.allowRemainingUndefines());
|
|
|
|
EXPECT_TRUE(_context.isNxCompat());
|
|
|
|
EXPECT_FALSE(_context.getLargeAddressAware());
|
2013-09-24 04:44:20 +08:00
|
|
|
EXPECT_TRUE(_context.getAllowBind());
|
2013-09-24 05:22:01 +08:00
|
|
|
EXPECT_TRUE(_context.getAllowIsolation());
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.getBaseRelocationEnabled());
|
|
|
|
EXPECT_TRUE(_context.isTerminalServerAware());
|
2013-08-24 08:39:10 +08:00
|
|
|
EXPECT_TRUE(_context.getDynamicBaseEnabled());
|
2013-08-27 11:38:18 +08:00
|
|
|
EXPECT_TRUE(_context.deadStrip());
|
2013-05-31 07:17:58 +08:00
|
|
|
}
|
|
|
|
|
2013-09-24 07:51:31 +08:00
|
|
|
TEST_F(WinLinkParserTest, StartsWithHyphen) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "-subsystem:console", "-out:a.exe",
|
2013-07-25 07:18:02 +08:00
|
|
|
"a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI, _context.getSubsystem());
|
|
|
|
EXPECT_EQ("a.exe", _context.outputPath());
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_EQ(1, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
2013-05-31 07:29:28 +08:00
|
|
|
}
|
|
|
|
|
2013-08-29 04:27:41 +08:00
|
|
|
TEST_F(WinLinkParserTest, UppercaseOption) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/SUBSYSTEM:CONSOLE", "/OUT:a.exe", "a.obj",
|
|
|
|
nullptr));
|
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI, _context.getSubsystem());
|
|
|
|
EXPECT_EQ("a.exe", _context.outputPath());
|
|
|
|
EXPECT_EQ(1, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
}
|
|
|
|
|
2013-07-27 04:54:36 +08:00
|
|
|
TEST_F(WinLinkParserTest, Mllvm) {
|
2013-09-24 07:51:31 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/mllvm:-debug", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
const std::vector<const char *> &options = _context.llvmOptions();
|
2013-07-27 04:54:36 +08:00
|
|
|
EXPECT_EQ(1U, options.size());
|
|
|
|
EXPECT_EQ("-debug", options[0]);
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
TEST_F(WinLinkParserTest, NoInputFiles) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", nullptr));
|
|
|
|
EXPECT_EQ("No input files\n", errorMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Tests for implicit file extension interpolation.
|
|
|
|
//
|
|
|
|
|
2013-05-31 10:12:34 +08:00
|
|
|
TEST_F(WinLinkParserTest, NoFileExtension) {
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "foo", "bar", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ("foo.exe", _context.outputPath());
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_EQ(2, inputFileCount());
|
|
|
|
EXPECT_EQ("foo.obj", inputFile(0));
|
|
|
|
EXPECT_EQ("bar.obj", inputFile(1));
|
2013-05-31 07:17:58 +08:00
|
|
|
}
|
|
|
|
|
2013-05-31 10:12:34 +08:00
|
|
|
TEST_F(WinLinkParserTest, NonStandardFileExtension) {
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "foo.o", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ("foo.exe", _context.outputPath());
|
2013-07-17 02:45:57 +08:00
|
|
|
EXPECT_EQ(1, inputFileCount());
|
|
|
|
EXPECT_EQ("foo.o", inputFile(0));
|
2013-05-31 07:17:58 +08:00
|
|
|
}
|
|
|
|
|
2013-07-19 09:38:49 +08:00
|
|
|
TEST_F(WinLinkParserTest, Libpath) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/libpath:dir1", "/libpath:dir2",
|
2013-07-23 06:17:24 +08:00
|
|
|
"a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
const std::vector<StringRef> &paths = _context.getInputSearchPaths();
|
2013-07-24 01:25:25 +08:00
|
|
|
EXPECT_EQ(2U, paths.size());
|
2013-07-19 09:38:49 +08:00
|
|
|
EXPECT_EQ("dir1", paths[0]);
|
|
|
|
EXPECT_EQ("dir2", paths[1]);
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Tests for command line options that take values.
|
|
|
|
//
|
|
|
|
|
2013-09-24 05:52:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, MachineX86) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/machine:x86", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_FILE_MACHINE_I386, _context.getMachineType());
|
|
|
|
}
|
|
|
|
|
2013-09-06 12:17:07 +08:00
|
|
|
TEST_F(WinLinkParserTest, MachineX64) {
|
2013-09-13 03:46:53 +08:00
|
|
|
EXPECT_TRUE(parse("link.exe", "/machine:x64", "a.obj", nullptr));
|
2013-09-24 05:52:01 +08:00
|
|
|
EXPECT_TRUE(StringRef(errorMessage()).startswith(
|
|
|
|
"Machine type other than x86 is not supported"));
|
2013-09-06 12:17:07 +08:00
|
|
|
}
|
|
|
|
|
2013-09-19 10:37:36 +08:00
|
|
|
TEST_F(WinLinkParserTest, MajorImageVersion) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/version:7", "foo.o", nullptr));
|
|
|
|
EXPECT_EQ(7, _context.getImageVersion().majorVersion);
|
|
|
|
EXPECT_EQ(0, _context.getImageVersion().minorVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, MajorMinorImageVersion) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/version:72.35", "foo.o", nullptr));
|
|
|
|
EXPECT_EQ(72, _context.getImageVersion().majorVersion);
|
|
|
|
EXPECT_EQ(35, _context.getImageVersion().minorVersion);
|
|
|
|
}
|
|
|
|
|
2013-05-31 14:30:10 +08:00
|
|
|
TEST_F(WinLinkParserTest, MinMajorOSVersion) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:windows,3", "foo.o", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_GUI, _context.getSubsystem());
|
|
|
|
EXPECT_EQ(3, _context.getMinOSVersion().majorVersion);
|
|
|
|
EXPECT_EQ(0, _context.getMinOSVersion().minorVersion);
|
2013-05-31 14:30:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, MinMajorMinorOSVersion) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:windows,3.1", "foo.o", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_GUI, _context.getSubsystem());
|
|
|
|
EXPECT_EQ(3, _context.getMinOSVersion().majorVersion);
|
|
|
|
EXPECT_EQ(1, _context.getMinOSVersion().minorVersion);
|
2013-05-31 14:30:10 +08:00
|
|
|
}
|
|
|
|
|
2013-07-20 08:45:00 +08:00
|
|
|
TEST_F(WinLinkParserTest, Base) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/base:8388608", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(0x800000U, _context.getBaseAddress());
|
2013-07-20 08:45:00 +08:00
|
|
|
}
|
|
|
|
|
2013-09-24 05:52:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, InvalidBase) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", "/base:1234", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(StringRef(errorMessage()).startswith(
|
|
|
|
"Base address have to be multiple of 64K"));
|
|
|
|
}
|
|
|
|
|
2013-06-08 11:59:00 +08:00
|
|
|
TEST_F(WinLinkParserTest, StackReserve) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/stack:8192", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(8192U, _context.getStackReserve());
|
|
|
|
EXPECT_EQ(4096U, _context.getStackCommit());
|
2013-06-08 11:59:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, StackReserveAndCommit) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/stack:16384,8192", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(16384U, _context.getStackReserve());
|
|
|
|
EXPECT_EQ(8192U, _context.getStackCommit());
|
2013-06-08 11:59:00 +08:00
|
|
|
}
|
2013-06-09 06:59:10 +08:00
|
|
|
|
2013-09-24 05:52:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, InvalidStackSize) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", "/stack:8192,16384", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(StringRef(errorMessage()).startswith("Invalid stack size"));
|
|
|
|
}
|
|
|
|
|
2013-06-09 06:59:10 +08:00
|
|
|
TEST_F(WinLinkParserTest, HeapReserve) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/heap:8192", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(8192U, _context.getHeapReserve());
|
|
|
|
EXPECT_EQ(4096U, _context.getHeapCommit());
|
2013-06-09 06:59:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, HeapReserveAndCommit) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/heap:16384,8192", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_EQ(16384U, _context.getHeapReserve());
|
|
|
|
EXPECT_EQ(8192U, _context.getHeapCommit());
|
2013-06-09 06:59:10 +08:00
|
|
|
}
|
2013-06-11 12:52:14 +08:00
|
|
|
|
2013-09-24 05:52:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, InvalidHeapSize) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", "/heap:8192,16384", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(StringRef(errorMessage()).startswith("Invalid heap size"));
|
|
|
|
}
|
|
|
|
|
2013-09-24 03:52:35 +08:00
|
|
|
TEST_F(WinLinkParserTest, SectionAlignment) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/align:8192", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ(8192U, _context.getSectionAlignment());
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:52:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, InvalidAlignment) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", "/align:1000", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ("Section alignment must be a power of 2, but got 1000\n",
|
|
|
|
errorMessage());
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
TEST_F(WinLinkParserTest, Include) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/include:foo", "a.out", nullptr));
|
|
|
|
auto symbols = _context.initialUndefinedSymbols();
|
|
|
|
EXPECT_FALSE(symbols.empty());
|
|
|
|
EXPECT_EQ("foo", symbols[0]);
|
|
|
|
symbols.pop_front();
|
|
|
|
EXPECT_TRUE(symbols.empty());
|
|
|
|
}
|
|
|
|
|
2013-09-24 08:16:27 +08:00
|
|
|
//
|
|
|
|
// Tests for /defaultlib and /nodefaultlib.
|
|
|
|
//
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, DefaultLib) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/defaultlib:user32.lib",
|
|
|
|
"/defaultlib:kernel32", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ(3, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
EXPECT_EQ("user32.lib", inputFile(1));
|
|
|
|
EXPECT_EQ("kernel32.lib", inputFile(2));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoDefaultLib) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/defaultlib:user32.lib",
|
|
|
|
"/defaultlib:kernel32", "/nodefaultlib:user32.lib",
|
|
|
|
"a.obj", nullptr));
|
|
|
|
EXPECT_EQ(2, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
EXPECT_EQ("kernel32.lib", inputFile(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoDefaultLibAll) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/defaultlib:user32.lib",
|
|
|
|
"/defaultlib:kernel32", "/nodefaultlib", "a.obj",
|
|
|
|
nullptr));
|
|
|
|
EXPECT_EQ(1, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Tests for boolean flags.
|
|
|
|
//
|
|
|
|
|
2013-06-11 12:52:14 +08:00
|
|
|
TEST_F(WinLinkParserTest, Force) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/force", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.allowRemainingUndefines());
|
2013-06-11 12:52:14 +08:00
|
|
|
}
|
|
|
|
|
2013-08-30 05:46:47 +08:00
|
|
|
TEST_F(WinLinkParserTest, ForceUnresolved) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/force:unresolved", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(_context.allowRemainingUndefines());
|
|
|
|
}
|
|
|
|
|
2013-06-16 11:07:08 +08:00
|
|
|
TEST_F(WinLinkParserTest, NoNxCompat) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/nxcompat:no", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_FALSE(_context.isNxCompat());
|
2013-06-16 11:07:08 +08:00
|
|
|
}
|
|
|
|
|
2013-07-17 01:20:38 +08:00
|
|
|
TEST_F(WinLinkParserTest, LargeAddressAware) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/largeaddressaware", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.getLargeAddressAware());
|
2013-07-17 01:20:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoLargeAddressAware) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/largeaddressaware:no", "a.obj", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_FALSE(_context.getLargeAddressAware());
|
2013-07-17 01:20:38 +08:00
|
|
|
}
|
|
|
|
|
2013-09-24 04:44:20 +08:00
|
|
|
TEST_F(WinLinkParserTest, AllowBind) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/allowbind", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(_context.getAllowBind());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoAllowBind) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/allowbind:no", "a.obj", nullptr));
|
|
|
|
EXPECT_FALSE(_context.getAllowBind());
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:22:01 +08:00
|
|
|
TEST_F(WinLinkParserTest, AllowIsolation) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/allowisolation", "a.obj", nullptr));
|
|
|
|
EXPECT_TRUE(_context.getAllowIsolation());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoAllowIsolation) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/allowisolation:no", "a.obj", nullptr));
|
|
|
|
EXPECT_FALSE(_context.getAllowIsolation());
|
|
|
|
}
|
|
|
|
|
2013-07-23 09:29:50 +08:00
|
|
|
TEST_F(WinLinkParserTest, Fixed) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/fixed", "a.out", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_FALSE(_context.getBaseRelocationEnabled());
|
2013-08-24 08:39:10 +08:00
|
|
|
EXPECT_FALSE(_context.getDynamicBaseEnabled());
|
2013-07-23 09:29:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoFixed) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/fixed:no", "a.out", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.getBaseRelocationEnabled());
|
2013-07-23 09:29:50 +08:00
|
|
|
}
|
2013-07-23 06:17:24 +08:00
|
|
|
|
2013-07-24 01:17:19 +08:00
|
|
|
TEST_F(WinLinkParserTest, TerminalServerAware) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/tsaware", "a.out", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_TRUE(_context.isTerminalServerAware());
|
2013-07-24 01:17:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoTerminalServerAware) {
|
2013-07-25 07:18:02 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/tsaware:no", "a.out", nullptr));
|
2013-08-07 06:31:59 +08:00
|
|
|
EXPECT_FALSE(_context.isTerminalServerAware());
|
2013-07-24 01:17:19 +08:00
|
|
|
}
|
|
|
|
|
2013-08-24 08:39:10 +08:00
|
|
|
TEST_F(WinLinkParserTest, DynamicBase) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/dynamicbase", "a.out", nullptr));
|
|
|
|
EXPECT_TRUE(_context.getDynamicBaseEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, NoDynamicBase) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/dynamicbase:no", "a.out", nullptr));
|
|
|
|
EXPECT_FALSE(_context.getDynamicBaseEnabled());
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Test for /failifmismatch
|
|
|
|
//
|
2013-07-23 06:17:24 +08:00
|
|
|
|
2013-07-25 09:23:50 +08:00
|
|
|
TEST_F(WinLinkParserTest, FailIfMismatch_Match) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/failifmismatch:foo=bar",
|
2013-08-01 06:13:15 +08:00
|
|
|
"/failifmismatch:foo=bar", "/failifmismatch:abc=def",
|
2013-07-25 09:23:50 +08:00
|
|
|
"a.out", nullptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, FailIfMismatch_Mismatch) {
|
|
|
|
EXPECT_TRUE(parse("link.exe", "/failifmismatch:foo=bar",
|
|
|
|
"/failifmismatch:foo=baz", "a.out", nullptr));
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Test for command line flags that are ignored.
|
|
|
|
//
|
|
|
|
|
2013-09-20 06:19:40 +08:00
|
|
|
TEST_F(WinLinkParserTest, Ignore) {
|
|
|
|
// There are some no-op command line options that are recognized for
|
|
|
|
// compatibility with link.exe.
|
2013-09-20 08:55:37 +08:00
|
|
|
EXPECT_FALSE(parse("link.exe", "/nologo", "/errorreport:prompt",
|
2013-09-24 06:41:46 +08:00
|
|
|
"/incremental", "/incremental:no", "/delay:unload",
|
|
|
|
"/delayload:user32", "a.obj", nullptr));
|
2013-07-26 06:46:49 +08:00
|
|
|
EXPECT_EQ("", errorMessage());
|
|
|
|
EXPECT_EQ(1, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Test for "--"
|
|
|
|
//
|
|
|
|
|
2013-08-14 05:44:44 +08:00
|
|
|
TEST_F(WinLinkParserTest, DashDash) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:console", "/out:a.exe",
|
|
|
|
"a.obj", "--", "b.obj", "-c.obj", nullptr));
|
|
|
|
EXPECT_EQ(llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI, _context.getSubsystem());
|
|
|
|
EXPECT_EQ("a.exe", _context.outputPath());
|
|
|
|
EXPECT_EQ(3, inputFileCount());
|
|
|
|
EXPECT_EQ("a.obj", inputFile(0));
|
|
|
|
EXPECT_EQ("b.obj", inputFile(1));
|
|
|
|
EXPECT_EQ("-c.obj", inputFile(2));
|
|
|
|
}
|
|
|
|
|
2013-09-24 05:38:03 +08:00
|
|
|
//
|
|
|
|
// Tests for entry symbol name.
|
|
|
|
//
|
|
|
|
|
2013-08-27 03:55:09 +08:00
|
|
|
TEST_F(WinLinkParserTest, DefEntryNameConsole) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:console", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ("_mainCRTStartup", _context.entrySymbolName());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WinLinkParserTest, DefEntryNameWindows) {
|
|
|
|
EXPECT_FALSE(parse("link.exe", "/subsystem:windows", "a.obj", nullptr));
|
|
|
|
EXPECT_EQ("_WinMainCRTStartup", _context.entrySymbolName());
|
|
|
|
}
|
|
|
|
|
2013-06-16 11:07:08 +08:00
|
|
|
} // end anonymous namespace
|