From bcc07a8fac1cb50c4abdc9465987f7a05bd0d577 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Fri, 15 Jan 2021 00:31:36 -0800 Subject: [PATCH] Removed static cptest/ dir, now managed by CI tests --- xc_testfiles.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 xc_testfiles.sh diff --git a/xc_testfiles.sh b/xc_testfiles.sh new file mode 100755 index 0000000..e549b13 --- /dev/null +++ b/xc_testfiles.sh @@ -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 +