-
Notifications
You must be signed in to change notification settings - Fork 391
Open
Labels
I: No breaking changePreviously written code will work as before, no one should note anything changing (aside the fix)Previously written code will work as before, no one should note anything changing (aside the fix)S: NormalHandle this with default priorityHandle this with default priorityT: BugWrong statements in the code or documentationWrong statements in the code or documentation
Description
The music-cont-proxy test (#3678 ) creates nodes in the following order in test_cont_proxy_sender.py:
mcoproxy = nest.Create("music_cont_out_proxy")
n1 = nest.Create("iaf_cond_exp", params={"I_e": 300.0})
n2 = nest.Create("iaf_cond_exp", params={"I_e": 600.0})Changing this as follows produces a segmentation fault when executing the test script ( mpiexec -np 3 music test_cont_proxy.music):
n1 = nest.Create("iaf_cond_exp", params={"I_e": 300.0})
n2 = nest.Create("iaf_cond_exp", params={"I_e": 600.0})
mcoproxy = nest.Create("music_cont_out_proxy")Metadata
Metadata
Assignees
Labels
I: No breaking changePreviously written code will work as before, no one should note anything changing (aside the fix)Previously written code will work as before, no one should note anything changing (aside the fix)S: NormalHandle this with default priorityHandle this with default priorityT: BugWrong statements in the code or documentationWrong statements in the code or documentation
Type
Projects
Status
To do (open issues)