aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest/sha2.test
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/qtest/sha2.test')
-rw-r--r--libtests/qtest/sha2.test18
1 files changed, 18 insertions, 0 deletions
diff --git a/libtests/qtest/sha2.test b/libtests/qtest/sha2.test
new file mode 100644
index 00000000..34d668f7
--- /dev/null
+++ b/libtests/qtest/sha2.test
@@ -0,0 +1,18 @@
+#!/usr/bin/env perl
+require 5.008;
+BEGIN { $^W = 1; }
+use strict;
+
+chdir("sha2") or die "chdir testdir failed: $!\n";
+
+require TestDriver;
+
+my $td = new TestDriver('sha2');
+
+$td->runtest("sha2",
+ {$td->COMMAND => "sha2"},
+ {$td->FILE => "sha2.out",
+ $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+
+$td->report(1);