Skip to content
Snippets Groups Projects
Commit 893221ad authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

fix tests

parent 4453f674
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,9 @@ void TestAll(const Args& args) {
}
for (auto& thread : threads) {
thread.join();
if (thread.joinable()) {
thread.join();
}
}
Assert(file_infos, args.nthreads, args.nfiles);
......
......@@ -22,7 +22,7 @@ ping 1.0.0.0 -n 10 -w 100 > nul
REM producer
mkdir %receiver_folder%
"%1" %proxy_address% %beamtime_id% 100 0 1 0 100
"%1" %proxy_address% %beamtime_id% 100 0 1 0 10000
REM consumer
"%2" %proxy_address% %receiver_folder% %beamtime_id% 2 %token% 0 1 > out.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment