aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-02-05 22:34:29 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-02-05 22:34:29 +0000
commitbd9cc051b34cdcd5148e03e92ed404a0587bacff (patch)
treef694c1cf8b05138d26e736cf19e8c23cb6cfa832 /tools
parenta403ab7f64b7a87e076ab32bcc7fe5e737e83c5d (diff)
parentbd496ef499cf63bd102f6a13aa2e64ef3464bff5 (diff)
downloadsrc-bd9cc051b34cdcd5148e03e92ed404a0587bacff.tar.gz
src-bd9cc051b34cdcd5148e03e92ed404a0587bacff.zip
Merging ^/head r278224 through r278297.
Notes
Notes: svn path=/projects/clang360-import/; revision=278298
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/qrndtest/Makefile11
-rw-r--r--tools/tools/qrndtest/README4
-rw-r--r--tools/tools/qrndtest/r.c81
3 files changed, 96 insertions, 0 deletions
diff --git a/tools/tools/qrndtest/Makefile b/tools/tools/qrndtest/Makefile
new file mode 100644
index 000000000000..741414439641
--- /dev/null
+++ b/tools/tools/qrndtest/Makefile
@@ -0,0 +1,11 @@
+#
+# $FreeBSD$
+#
+
+PROG = qrndtest
+
+SRCS = r.c
+
+MAN=
+
+.include <bsd.prog.mk>
diff --git a/tools/tools/qrndtest/README b/tools/tools/qrndtest/README
new file mode 100644
index 000000000000..48f7a6f2b06f
--- /dev/null
+++ b/tools/tools/qrndtest/README
@@ -0,0 +1,4 @@
+This is a really quick random testing that I wrote for adrian.
+
+If you want a real randomness tester, look at dieharder that has a much
+larger battery of tests and will tell you if your PRNG is good or not.
diff --git a/tools/tools/qrndtest/r.c b/tools/tools/qrndtest/r.c
new file mode 100644
index 000000000000..edfafa778015
--- /dev/null
+++ b/tools/tools/qrndtest/r.c
@@ -0,0 +1,81 @@
+/*-
+ * Copyright 2015 John-Mark Gurney.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ *
+ */
+
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <strings.h>
+
+typedef uint32_t (*rndfun_t)();
+
+uint32_t
+randomwrap()
+{
+ return random();
+}
+
+struct {
+ const char *name;
+ rndfun_t rndfun;
+} rndfuns[] = {
+ { "random", randomwrap },
+ { "arc4random", arc4random },
+ { NULL, NULL },
+};
+
+int
+main(int argc, char *argv[])
+{
+ uint64_t vals[4] = {};
+ uint64_t avg;
+ unsigned int i;
+ rndfun_t f;
+
+ if (argc == 1)
+ f = rndfuns[0].rndfun;
+ else {
+ for (i = 0; rndfuns[i].name != NULL; i++) {
+ if (strcasecmp(rndfuns[i].name, argv[1]) == 0)
+ break;
+ }
+ if (rndfuns[i].name == NULL)
+ return 1;
+ f = rndfuns[i].rndfun;
+ }
+
+ for (;;) {
+ vals[f() % 4]++;
+ if (((i++) % (4*1024*1024)) == 0) {
+ avg = vals[0] + vals[1] + vals[2] + vals[3];
+ avg /= 4;
+ printf("%d: %ld %ld %ld %ld\n", i, vals[0] - avg, vals[1] - avg, vals[2] - avg, vals[3] - avg);
+ }
+ }
+ return 0;
+}