From bcc984bced5f744e07ed5fc9f3cf308d243ad0a1 Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Thu, 19 Mar 2026 12:23:37 +0000 Subject: [PATCH] GP-0: Fix more test config/build issues. --- Ghidra/Processors/PowerPC/build.gradle | 6 ++++-- .../ghidra/program/emulation/PpcPcodeUseropLibraryTest.java | 0 Ghidra/Processors/tricore/build.gradle | 6 ++++-- .../program/emulation/TricorePcodeUseropLibraryTest.java | 0 4 files changed, 8 insertions(+), 4 deletions(-) rename Ghidra/Processors/PowerPC/src/{test.slow => test}/java/ghidra/program/emulation/PpcPcodeUseropLibraryTest.java (100%) rename Ghidra/Processors/tricore/src/{test.slow => test}/java/ghidra/program/emulation/TricorePcodeUseropLibraryTest.java (100%) diff --git a/Ghidra/Processors/PowerPC/build.gradle b/Ghidra/Processors/PowerPC/build.gradle index 7e1c52b725..ee9c2f1910 100644 --- a/Ghidra/Processors/PowerPC/build.gradle +++ b/Ghidra/Processors/PowerPC/build.gradle @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -26,5 +26,7 @@ eclipse.project.name = 'Processors PowerPC' dependencies { api project(':Base') api project(':BytePatterns') + + testImplementation project(path: ':Emulation', configuration: 'testArtifacts') } diff --git a/Ghidra/Processors/PowerPC/src/test.slow/java/ghidra/program/emulation/PpcPcodeUseropLibraryTest.java b/Ghidra/Processors/PowerPC/src/test/java/ghidra/program/emulation/PpcPcodeUseropLibraryTest.java similarity index 100% rename from Ghidra/Processors/PowerPC/src/test.slow/java/ghidra/program/emulation/PpcPcodeUseropLibraryTest.java rename to Ghidra/Processors/PowerPC/src/test/java/ghidra/program/emulation/PpcPcodeUseropLibraryTest.java diff --git a/Ghidra/Processors/tricore/build.gradle b/Ghidra/Processors/tricore/build.gradle index 36988d3b0e..c9d0aa3f67 100644 --- a/Ghidra/Processors/tricore/build.gradle +++ b/Ghidra/Processors/tricore/build.gradle @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -24,4 +24,6 @@ eclipse.project.name = 'Processors tricore' dependencies { api project(':Base') + + testImplementation project(path: ':Emulation', configuration: 'testArtifacts') } diff --git a/Ghidra/Processors/tricore/src/test.slow/java/ghidra/program/emulation/TricorePcodeUseropLibraryTest.java b/Ghidra/Processors/tricore/src/test/java/ghidra/program/emulation/TricorePcodeUseropLibraryTest.java similarity index 100% rename from Ghidra/Processors/tricore/src/test.slow/java/ghidra/program/emulation/TricorePcodeUseropLibraryTest.java rename to Ghidra/Processors/tricore/src/test/java/ghidra/program/emulation/TricorePcodeUseropLibraryTest.java