Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 9 additions & 2 deletions gui/manualtest/projectfiledialog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
Some manual testing in the project file dialog interface



## Test: Platform files
## Test: Platform file pic8.xml

Ticket: #14489

Expand All @@ -14,6 +13,14 @@ EXPECTED: In the project file dialog it should be possible to select xml files i
TODO: can this test be automated


## Test: Custom cfg file

Ticket: #14672

1. Copy addons/avr.cfg to a file "aa.cfg" in same folder as a cppcheck GUI project file

EXPECTED: It should not be possible to activate "aa.cfg" in the project file dialog, it should appear in alphabetical order.


## Test: Misra C checkbox

Expand Down
2 changes: 1 addition & 1 deletion gui/projectfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1195,5 +1195,5 @@ QStringList ProjectFile::getSearchPaths(const QString& dir) const {
const QString applicationFilePath = QCoreApplication::applicationFilePath();
const QString appPath = QFileInfo(applicationFilePath).canonicalPath();
const QString datadir = getDataDir();
return getSearchPaths(inf.canonicalFilePath(), appPath, datadir, dir);
return getSearchPaths(inf.canonicalPath(), appPath, datadir, dir);
}
Loading