Skip to content

Commit ca173a7

Browse files
committed
Fix ipc_file_prov test: should use two different files
Fix ipc_file_prov test: producer and consumer should use two different files. Signed-off-by: Lukasz Dorau <[email protected]>
1 parent bfbbe8c commit ca173a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ipc_file_prov.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ UMF_LOG_VAL="level:debug;flush:debug;output:stderr;pid:yes"
2020
rm -f ${FILE_NAME}
2121

2222
echo "Starting ipc_file_prov CONSUMER on port $PORT ..."
23-
UMF_LOG=$UMF_LOG_VAL ./umf_test-ipc_file_prov_consumer $PORT $FILE_NAME &
23+
UMF_LOG=$UMF_LOG_VAL ./umf_test-ipc_file_prov_consumer $PORT ${FILE_NAME}_consumer &
2424

2525
echo "Waiting 1 sec ..."
2626
sleep 1
2727

2828
echo "Starting ipc_file_prov PRODUCER on port $PORT ..."
29-
UMF_LOG=$UMF_LOG_VAL ./umf_test-ipc_file_prov_producer $PORT $FILE_NAME
29+
UMF_LOG=$UMF_LOG_VAL ./umf_test-ipc_file_prov_producer $PORT ${FILE_NAME}_producer
3030

3131
# remove the SHM file
3232
rm -f ${FILE_NAME}

0 commit comments

Comments
 (0)