GP-3615 - Added a test harness method to make it easier to change log output from a test. The test harness will reset any changes made at the end of the test.

This commit is contained in:
dragonmacher 2023-07-19 12:47:47 -04:00
parent f8ec071906
commit bd0c491263
9 changed files with 170 additions and 105 deletions

View file

@ -19,7 +19,8 @@ package ghidra.pcodeCPort.slgh_compile.regression;
import static org.junit.Assert.*;
import java.io.*;
import java.util.*;
import java.util.Iterator;
import java.util.List;
import java.util.regex.Pattern;
import org.antlr.runtime.RecognitionException;
@ -66,7 +67,6 @@ public class SleighCompileRegressionTest extends AbstractGenericTest {
StringBuffer summary = new StringBuffer();
LoggingInitialization.initializeLoggingSystem();
List<ResourceFile> inputs = getSlaspecFiles();
Iterator<ResourceFile> ii = inputs.iterator();