Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IEP-374: GCOV Reports view and creation #817

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b60cbf3
initial boilerplate
alirana01 Nov 4, 2022
228164f
IEP-374: openocd started and dumps file now generated
alirana01 Aug 1, 2023
b46d51d
move towards active debug session for gcov
alirana01 Aug 7, 2023
66772dc
added buttons to the debug perspective for generating dumps
alirana01 Aug 29, 2023
a65fa9f
added required gcov dialog dependency and fixed button addition
alirana01 Aug 31, 2023
26da993
Using reflections to add the required inputs to internal gcov dialog
alirana01 Sep 6, 2023
4fafdd1
clean up and javadocs
alirana01 Sep 6, 2023
506305f
cleanup unused class
alirana01 Sep 6, 2023
81c1472
missed dependency added again, was removed during conflict resolution
alirana01 Sep 7, 2023
6b290bf
fixed file format
alirana01 Sep 7, 2023
aed14f2
coderabitai: comment resolution
alirana01 Sep 7, 2023
5c286e8
coderabbitai: enhancement to logging
alirana01 Sep 7, 2023
05ea147
Exported strings to the messages file for dynamic language
alirana01 Sep 7, 2023
7ed186c
added required dependencies for ui tests
alirana01 Sep 7, 2023
0ab584f
Revert "added required dependencies for ui tests"
alirana01 Sep 7, 2023
b5c2381
coderabbitai: enhancement to throw exception for null
alirana01 Sep 7, 2023
cdc120a
added update sites to the target group
alirana01 Sep 13, 2023
83b4581
added gcov feature group
alirana01 Sep 13, 2023
c3a6e21
removing unwanted deps
alirana01 Sep 13, 2023
5af363b
review comments
alirana01 Sep 13, 2023
a5b71a6
coderabbitai suggestions and code cleanup
alirana01 Sep 13, 2023
e9289a8
string externalization and added action to view
alirana01 Sep 13, 2023
1076037
docs: Updated documentation file and added images
alirana01 Sep 19, 2023
4bac3ff
refactor: incorporate CodeRabbitAI review to improve readability and …
alirana01 Sep 19, 2023
0f1d826
remove: delete unwanted file DS_Store
alirana01 Sep 19, 2023
2519d20
docs: add Chinese translation
Lindazhxy Feb 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
review comments
alirana01 committed Sep 19, 2023
commit 5af363b8058634432a634661769014ebb9fa19c7
Original file line number Diff line number Diff line change
@@ -93,9 +93,11 @@ public void handleEvent(Event event)
{
Point pt = new Point(event.x, event.y);
TableItem item = table.getItem(pt);
if (item == null)
return;
IFile file = (IFile) item.getData();

if (item != null && file != null)
if (file != null)
{
try
{
@@ -104,7 +106,7 @@ public void handleEvent(Event event)
}
catch (PartInitException e)
{
e.printStackTrace();
Logger.log(e);
}
}
}