mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-07 09:11:15 -09:00
Test fixes
This commit is contained in:
@@ -506,20 +506,19 @@ public class GoToAddressLabelPluginTest extends AbstractGhidraHeadedIntegrationT
|
||||
public void testQueryResultsMaxHitsDynamicFound() throws Exception {
|
||||
loadProgram("x86");
|
||||
Options opt = plugin.getTool().getOptions(PluginConstants.SEARCH_OPTION_NAME);
|
||||
opt.getInt(GhidraOptions.OPTION_SEARCH_LIMIT, 20);
|
||||
opt.setInt(GhidraOptions.OPTION_SEARCH_LIMIT, 20);
|
||||
|
||||
setText("L*");
|
||||
performOkCallback();
|
||||
GhidraProgramTableModel<?> model = waitForModel();
|
||||
assertEquals(20, model.getRowCount());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryResultsMaxHitsDefinedFound() throws Exception {
|
||||
loadProgram("x86");
|
||||
Options opt = plugin.getTool().getOptions(PluginConstants.SEARCH_OPTION_NAME);
|
||||
opt.getInt(GhidraOptions.OPTION_SEARCH_LIMIT, 5);
|
||||
opt.setInt(GhidraOptions.OPTION_SEARCH_LIMIT, 5);
|
||||
|
||||
createLabel("1006960", "abc1");
|
||||
createLabel("1006961", "abc2");
|
||||
@@ -533,7 +532,6 @@ public class GoToAddressLabelPluginTest extends AbstractGhidraHeadedIntegrationT
|
||||
performOkCallback();
|
||||
GhidraProgramTableModel<?> model = waitForModel();
|
||||
assertEquals(5, model.getRowCount());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user