mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 20:22:44 +00:00
Test fixes
This commit is contained in:
parent
c01e6fc4a1
commit
32efa223e7
@ -390,8 +390,7 @@ public class SearchTextPlugin3Test extends AbstractGhidraHeadedIntegrationTest {
|
||||
|
||||
Collections.sort(list);
|
||||
Collections.reverse(list);
|
||||
for (int i = 0; i < list.size(); i++) {
|
||||
Address addr = list.get(i);
|
||||
for (Address addr : list) {
|
||||
pressSearchButton(dialog, searchButton);
|
||||
ProgramLocation loc = cbPlugin.getCurrentLocation();
|
||||
assertEquals(addr, loc.getAddress());
|
||||
@ -627,7 +626,8 @@ public class SearchTextPlugin3Test extends AbstractGhidraHeadedIntegrationTest {
|
||||
setToggleButtonSelected(cb, true);
|
||||
|
||||
// install our own task monitor so we can cancel before the task finishes
|
||||
CancellingStubTaskMonitorComponent testMonitor = new CancellingStubTaskMonitorComponent();
|
||||
CancellingStubTaskMonitorComponent testMonitor =
|
||||
runSwing(() -> new CancellingStubTaskMonitorComponent());
|
||||
setInstanceField("taskMonitorComponent", dialog, testMonitor);
|
||||
|
||||
setText(tf, "hello");
|
||||
|
@ -46,6 +46,7 @@ src/main/resources/images/information.png||FAMFAMFAM Icons - CC 2.5|||famfamfam
|
||||
src/main/resources/images/kgpg.png||Nuvola Icons - LGPL 2.1|||Nuvola icon set|END|
|
||||
src/main/resources/images/left.alternate.png||GHIDRA||||END|
|
||||
src/main/resources/images/left.png||GHIDRA||||END|
|
||||
src/main/resources/images/list-remove.png||Oxygen Icons - LGPL 3.0|||Oxygen icon theme (dual license; LGPL or CC-SA-3.0)|END|
|
||||
src/main/resources/images/locationIn.gif||GHIDRA||||END|
|
||||
src/main/resources/images/locationOut.gif||GHIDRA||||END|
|
||||
src/main/resources/images/openFolder.png||Modified Nuvola Icons - LGPL 2.1||||END|
|
||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@ -491,6 +491,7 @@ public class HelpBuildUtils {
|
||||
catch (FileSystemNotFoundException e) {
|
||||
try {
|
||||
FileSystems.newFileSystem(uri, Collections.emptyMap());
|
||||
return Paths.get(uri);
|
||||
}
|
||||
catch (IOException e1) {
|
||||
debug("Exception loading filesystem for uri: " + uri + "\n\t" + e1.getMessage());
|
||||
|
Loading…
Reference in New Issue
Block a user