Skip to content
Snippets Groups Projects
Commit beb99cb1 authored by Jammer, Tim's avatar Jammer, Tim
Browse files

fix testcases not compiling

parent 8d8418bc
Branches
No related tags found
1 merge request!4Devel tj
...@@ -8,7 +8,7 @@ from scripts.Infrastructure.Template import TemplateManager ...@@ -8,7 +8,7 @@ from scripts.Infrastructure.Template import TemplateManager
from scripts.Infrastructure.TemplateFactory import get_send_recv_template, get_collective_template from scripts.Infrastructure.TemplateFactory import get_send_recv_template, get_collective_template
class InvalidRankErrorColl(ErrorGenerator): class InvalidRankErrorColl(ErrorGenerator):
invalid_ranks = ["-1", "size", "MPI_PROC_NULL"] invalid_ranks = ["-1", "nprocs", "MPI_PROC_NULL"]
functions_to_use = ["mpi_reduce", "mpi_bcast"] functions_to_use = ["mpi_reduce", "mpi_bcast"]
def __init__(self): def __init__(self):
......
...@@ -9,7 +9,7 @@ from scripts.Infrastructure.TemplateFactory import get_send_recv_template, get_c ...@@ -9,7 +9,7 @@ from scripts.Infrastructure.TemplateFactory import get_send_recv_template, get_c
class InvalidRankErrorP2P(ErrorGenerator): class InvalidRankErrorP2P(ErrorGenerator):
invalid_ranks = ["-1", "size", "MPI_PROC_NULL"] invalid_ranks = ["-1", "nprocs", "MPI_PROC_NULL"]
send_funcs=["mpi_send","mpi_isend"] send_funcs=["mpi_send","mpi_isend"]
recv_funcs = ["mpi_recv", "mpi_irecv"] recv_funcs = ["mpi_recv", "mpi_irecv"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment