From c9ad0ebf6cd1aa7f0a439ffdc4838b8f4bda1e19 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Sun, 5 Jan 2025 16:37:18 -0500 Subject: [PATCH] GP-0: Fixing test build --- Ghidra/Test/IntegrationTest/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ghidra/Test/IntegrationTest/build.gradle b/Ghidra/Test/IntegrationTest/build.gradle index 58487d1c04..8aa416f5c8 100644 --- a/Ghidra/Test/IntegrationTest/build.gradle +++ b/Ghidra/Test/IntegrationTest/build.gradle @@ -58,7 +58,8 @@ dependencies { // some tests use classes in Base, FunctionGraph and PDB testImplementation project(path: ':Base', configuration: 'testArtifacts') - testImplementation project(path: ':Base', configuration: 'integrationTestArtifacts') + testImplementation project(path: ':Base', configuration: 'integrationTestArtifacts') + testImplementation project(path: ':Emulation', configuration: 'testArtifacts') testImplementation project(path: ':FunctionGraph', configuration: 'testArtifacts') testImplementation project(path: ':PDB', configuration: 'testArtifacts') testImplementation project(path: ':GnuDemangler', configuration: 'testArtifacts')