diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-02-08 16:58:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-02-08 16:58:55 (GMT) |
commit | f61b3fa1374e4349c7de5415c6b29c856b1f486a (patch) | |
tree | fd1c4348d7192c53d02bb0409d746c996966bcb2 /test | |
parent | 99764857e7d20faeb6f1ea852db64bb7ce235ab3 (diff) | |
download | hdf5-f61b3fa1374e4349c7de5415c6b29c856b1f486a.zip hdf5-f61b3fa1374e4349c7de5415c6b29c856b1f486a.tar.gz hdf5-f61b3fa1374e4349c7de5415c6b29c856b1f486a.tar.bz2 |
[svn-r3379] Purpose:
"Bug fix"
Description:
It could not create the stream file in modi4 because port 5678 is used by
a recently installed application in modi4. But the reading side just
waited there and the two test processes have to be killed by hand.
Solution:
Changed to use port 10007 instead, hoping less chance of conflict
with other applications. Just a short-term solution.
Platforms tested:
modi4.
Diffstat (limited to 'test')
-rw-r--r-- | test/stream_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stream_test.c b/test/stream_test.c index ffe1c18..b786014 100644 --- a/test/stream_test.c +++ b/test/stream_test.c @@ -64,7 +64,7 @@ int main (void) #define RANK 2 /* sample dataset rank */ #define DIMS 50 /* sample dataset dimensions */ #define DATASETNAME "IntArray" /* sample dataset name */ -#define FILENAME "localhost:5678" /* filename argument */ +#define FILENAME "localhost:10007" /* filename argument */ static int sender (void) |