-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now the test will ignore the stackdump if it is plotted
- Loading branch information
Showing
2 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
type=make | ||
|
||
plumed_regtest_after(){ | ||
#this discards the lines like | ||
#"(tools/NeighborList.cpp:98) void PLMD::NeighborList::initialize()" | ||
# in this way if NeighborList.cpp is moved or modified this test won't | ||
#trigger a (false) error | ||
awk '/(Single|Double|neighbor) list/{print} | ||
/Exception text/{print}' ./unitTest > unitTest.proc | ||
} |
2 changes: 0 additions & 2 deletions
2
...istInitializationError/unitTest.reference → ...itializationError/unitTest.proc.reference
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
Single list: | ||
[100000]Exception text: | ||
(tools/NeighborList.cpp:98) void PLMD::NeighborList::initialize() | ||
An error happened while allocating the neighbor list, please decrease the number of atoms used | ||
Double list, no pairs: | ||
[100000, 90000]Exception text: | ||
(tools/NeighborList.cpp:98) void PLMD::NeighborList::initialize() | ||
An error happened while allocating the neighbor list, please decrease the number of atoms used |