From 94c97d61ba91fd5c45276fd05eaa1bcafc28fa1a Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 1 Aug 2014 15:57:21 +0300 Subject: [PATCH] stop using colorhash --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index a2b4b0d..16d8c23 100755 --- a/test.sh +++ b/test.sh @@ -28,7 +28,7 @@ run_dst true ## generate 1Mbit of random data run_src dd if=/dev/urandom of=data.send bs=125kB count=1 status=none -SRC_HASH=`run_src sha256sum data.send | ./colorhash.py` +SRC_HASH=`run_src sha256sum data.send` # modulate data into audio file run_src "./send.py tx.int16" @@ -51,6 +51,6 @@ run_src killall -q aplay || true run_dst killall -q arecord || true # verify transmittion -DST_HASH=`run_dst sha256sum data.recv | ./colorhash.py` +DST_HASH=`run_dst sha256sum data.recv` echo -e "$SRC_HASH\n$DST_HASH" \ No newline at end of file