diff options
Diffstat (limited to 'checks')
-rw-r--r-- | checks/ChangeLog | 6 | ||||
-rw-r--r-- | checks/Makefile.am | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog new file mode 100644 index 000000000..d0bcf614b --- /dev/null +++ b/checks/ChangeLog @@ -0,0 +1,6 @@ +Mon May 18 15:40:02 1998 Werner Koch ([email protected]) + + * Makefile.am: Now uses mk-tdata to produce random test data. + + * ChangeLog: New. + diff --git a/checks/Makefile.am b/checks/Makefile.am index b00dd1aab..654922bdc 100644 --- a/checks/Makefile.am +++ b/checks/Makefile.am @@ -42,12 +42,12 @@ secring.skr: secring.skr.asc ../g10/gpgm --yes --dearmor -o secring.skr secring.skr.asc data-500: - head -c 500 /dev/urandom >data-500 + ../tools/mk-tdata 500 /dev/urandom >data-500 data-9000: - head -c 9000 /dev/urandom >data-9000 + ../tools/mk-tdata 9000 /dev/urandom >data-9000 data-32000: - head -c 32000 /dev/urandom >data-32000 + ../tools/mk-tdata 32000 /dev/urandom >data-32000 data-80000: - head -c 80000 /dev/urandom >data-80000 + ../tools/mk-tdata 80000 /dev/urandom >data-80000 |