Moved tutorials/IO -> test/IO

The tutorials/IO/fileHandler case is a set of simple test for fileHandler not a
tutorial
This commit is contained in:
Henry Weller
2021-07-06 14:46:15 +01:00
parent 163eb1c0ef
commit 013bc08399
13 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ mkdir -p machineA/fileHandler
( cd machineA/fileHandler && \
cp -r ../../processor[0-1] . && \
cp -r ../../system . && \
mkdir -p constant && cp ../../constant/* constant
mkdir -p constant && find ../../constant -type f -exec cp {} constant/ \;
)
#- Note: slave node does not need constant&system since these are global
rm -rf machineB/fileHandler
@ -79,7 +79,7 @@ mkdir -p machineA/fileHandler
( cd machineA/fileHandler && \
cp -r ../../processor* . && \
cp -r ../../system . && \
mkdir -p constant && cp ../../constant/* constant
mkdir -p constant && find ../../constant -type f -exec cp {} constant/ \;
)
#- Note: slave node does not need constant&system since these are global
rm -rf machineB/fileHandler