summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-02-19 20:55:17 +0000
committerChris Wilson <cpwilson@src.gnome.org>2007-02-19 20:55:17 +0000
commit503597c87626d7dae2cc647b3e6dc5619bf150dd (patch)
tree260867ee0d1a39d7030ca309177e9c1c14a8b786
parent4790d005efd075f8208d870a2cfe83d5bca7276e (diff)
downloadvte-503597c87626d7dae2cc647b3e6dc5619bf150dd.tar.gz
A simple script to dump a fixed amount of random data to the terminal.
2007-02-19 Chris Wilson <chris@chris-wilson.co.uk> * perf/random.sh: A simple script to dump a fixed amount of random data to the terminal. svn path=/trunk/; revision=1703
-rw-r--r--ChangeLog6
-rwxr-xr-xperf/random.sh3
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ee6e4037..618fbf46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2007-02-19 Chris Wilson <chris@chris-wilson.co.uk>
+ * perf/random.sh:
+ A simple script to dump a fixed amount of random data to the
+ terminal.
+
+2007-02-19 Chris Wilson <chris@chris-wilson.co.uk>
+
A few more trivial incremental improvements.
* src/Makefile.am:
diff --git a/perf/random.sh b/perf/random.sh
new file mode 100755
index 00000000..b3850552
--- /dev/null
+++ b/perf/random.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+dd if=/dev/urandom bs=512 count=40960
+reset