FileTransfer test
=================


This tests aims at testing that files are correctly transfered when invoking
"p2pmpirun -l ". The test should be run with:

  %p2pmpirun -n <#procs> -l filelist RemoteDataTest

and filelist must contain
  <abs path to>/RemoteDataTest.class
  <abs path to>/sample.dat


The test consists in the following :
1) p2pmpirun -n <#procs> -l filelist RemoteDataTest  
   --> transfer the class file and sample.dat file to each peer

2) Every process reads the length of its "sample.dat" file

3) Process 0 broadcasts the length "len" of its sample.dat file,
   and other process allocates a buffer of "len" chars.

4) Process 0 reads and broadcasts its "sample.dat" contents.

5) Each process receives the message containing the "sample.dat"
  contents, reads its local "sample.dat" and compares the two. 


