Skip to content

Commit 311696f

Browse files
waelsamyveluca93
authored andcommitted
Set TPS Default Pipe for Comunication Task to std_io
1 parent 28ffe25 commit 311696f

11 files changed

Lines changed: 57 additions & 11 deletions

cmscontrib/loaders/tps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def _get_task_type_parameters(self, data, task_type, evaluation_param):
9999
par_processes = '%s_num_processes' % par_prefix
100100
if par_processes not in task_type_parameters:
101101
task_type_parameters[par_processes] = 1
102-
return [task_type_parameters[par_processes], "stub", "fifo_io"]
102+
return [task_type_parameters[par_processes], "stub", "std_io"]
103103

104104
if task_type == 'TwoSteps' or task_type == 'OutputOnly':
105105
return [evaluation_param]

cmstestsuite/code/communication-stubbed-correct.c

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
int userfunc(int x) {
2+
return x;
3+
}

cmstestsuite/code/communication-stubbed-correct.cpp

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
int userfunc(int x) {
2+
return x;
3+
}

cmstestsuite/code/communication-stubbed-incorrect.c

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
int userfunc(int x) {
2+
return x + 1;
3+
}

cmstestsuite/code/communication-stubbed-incorrect.cpp

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
int userfunc(int x) {
2+
return x + 1;
3+
}

cmstestsuite/code/incorrect-fileio-with-stdio.c

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)