Removed static cptest/ dir, now managed by CI tests

This commit is contained in:
Russ Magee 2021-01-15 00:31:36 -08:00
parent 242d39192c
commit bcc07a8fac
1 changed files with 13 additions and 0 deletions

13
xc_testfiles.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
## setup.sh - create some files for xc copy testing
dir=cptest
mkdir -p ${dir}/subdir
dd bs=1024 count=16 if=/dev/urandom of=${dir}/file16KB
dd bs=1024 count=16 if=/dev/urandom of=${dir}/file1KB
dd bs=1024 count=16 if=/dev/urandom of=${dir}/file32KB
dd bs=1024 count=16 if=/dev/urandom of=${dir}/file6B
dd bs=1048576 count=32 if=/dev/urandom of=${dir}/subdir/file32MB
dd bs=1048576 count=64 if=/dev/urandom of=${dir}/subdir/file64MB