mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-3545 - GNU Demangler - Fix Parsing Issues - Ready for Review
This commit is contained in:
parent
ed80be21c3
commit
11619169b4
33 changed files with 1359 additions and 3934 deletions
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
package help.screenshot;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.event.ActionListener;
|
||||
|
@ -148,7 +148,7 @@ public class CodeBrowserPluginScreenShots extends GhidraScreenShotGenerator {
|
|||
makeSelection(0x0406be1, 0x0406bf1);
|
||||
|
||||
performAction("Create Table From Selection", "CodeBrowserPlugin", true);
|
||||
Window window = waitForWindowByTitleContaining(null, "Selection Table", 2000);
|
||||
Window window = waitForWindowByTitleContaining("Selection Table");
|
||||
Point loc = plugin.getListingPanel().getLocationOnScreen();
|
||||
Dimension size = window.getSize();
|
||||
window.setBounds(loc.x + 300, loc.y + 150, size.width, 300);
|
||||
|
@ -240,7 +240,7 @@ public class CodeBrowserPluginScreenShots extends GhidraScreenShotGenerator {
|
|||
JWindow popup = (JWindow) waitForWindowByName("ListingHoverProvider");
|
||||
paintFix(popup);
|
||||
captureProvider(CodeViewerProvider.class);
|
||||
|
||||
|
||||
CodeViewerProvider provider = getProvider(CodeViewerProvider.class);
|
||||
captureProviderWithScreenShot(provider);
|
||||
}
|
||||
|
|
|
@ -142,7 +142,7 @@ public class NavigationScreenShots extends GhidraScreenShotGenerator {
|
|||
setGotoText(dialog, "LAB*");
|
||||
pressOkOnDialog();
|
||||
Window window =
|
||||
waitForWindowByTitleContaining(null, "Search Limit Exceeded!", DEFAULT_WINDOW_TIMEOUT);
|
||||
waitForWindowByTitleContaining("Search Limit Exceeded!");
|
||||
assertNotNull(window);
|
||||
pressButtonByText(window, "OK");
|
||||
waitForSwing();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue