Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: syzygy/agent/asan/iat_patcher_unittest.cc

Issue 2427043003: Enable the IAT patcher unittests in x64. (Closed)
Patch Set: Comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « syzygy/agent/asan/asan.gyp ('k') | syzygy/pe/export_dll_x64.def » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/agent/asan/iat_patcher_unittest.cc
diff --git a/syzygy/agent/asan/iat_patcher_unittest.cc b/syzygy/agent/asan/iat_patcher_unittest.cc
index 6b6b989c9eb26a1df3a21bf86ffb35b5f2bed815..294c72616b35e0341979f78b77eabd7edb3d7df0 100644
--- a/syzygy/agent/asan/iat_patcher_unittest.cc
+++ b/syzygy/agent/asan/iat_patcher_unittest.cc
@@ -38,7 +38,11 @@ class LenientIATPatcherTest : public testing::Test {
void SetUp() override {
base::FilePath path =
+#ifndef _WIN64
testing::GetExeRelativePath(L"test_dll.dll");
+#else
+ testing::GetExeRelativePath(L"test_dll_x64.dll");
+#endif
test_dll_ = ::LoadLibrary(path.value().c_str());
ASSERT_NE(nullptr, test_dll_);
}
« no previous file with comments | « syzygy/agent/asan/asan.gyp ('k') | syzygy/pe/export_dll_x64.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698