File tree 1 file changed +14
-0
lines changed
Ghidra/Debug/Debugger/src/test/java/ghidra/app/plugin/core/debug/gui
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 42
42
import docking .widgets .table .DynamicTableColumn ;
43
43
import docking .widgets .tree .GTree ;
44
44
import docking .widgets .tree .GTreeNode ;
45
+ import ghidra .GhidraTestApplicationLayout ;
45
46
import ghidra .app .nav .Navigatable ;
46
47
import ghidra .app .plugin .core .debug .gui .action .*;
47
48
import ghidra .app .plugin .core .debug .gui .model .ObjectTableModel .ValueRow ;
73
74
import ghidra .util .datastruct .TestDataStructureErrorHandlerInstaller ;
74
75
import ghidra .util .exception .CancelledException ;
75
76
import ghidra .util .task .ConsoleTaskMonitor ;
77
+ import utility .application .ApplicationLayout ;
76
78
77
79
public abstract class AbstractGhidraHeadedDebuggerTest
78
80
extends AbstractGhidraHeadedIntegrationTest implements AsyncTestUtils {
@@ -110,6 +112,18 @@ public abstract class AbstractGhidraHeadedDebuggerTest
110
112
}
111
113
}
112
114
115
+ @ Override
116
+ protected ApplicationLayout createApplicationLayout () throws IOException {
117
+ return new GhidraTestApplicationLayout (new File (getTestDirectoryPath ())) {
118
+ @ Override
119
+ protected Set <String > getDependentModulePatterns () {
120
+ Set <String > patterns = super .getDependentModulePatterns ();
121
+ patterns .add ("Debugger-agent" );
122
+ return patterns ;
123
+ }
124
+ };
125
+ }
126
+
113
127
public static final String LANGID_TOYBE64 = "Toy:BE:64:default" ;
114
128
115
129
protected static byte [] arr (String hex ) {
You can’t perform that action at this time.
0 commit comments