summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-06-18 09:03:32 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-06-18 09:03:32 +1000
commitb75f08cb13ca2e03946e0beeaac2e0ffa0d2aae7 (patch)
tree8d2a5b136768ff2ce36e3afe621fc62c6a282afa /test/recipes
parent24b6261e5bb286fa494e7208a3de28365e0ca004 (diff)
Fix segfault in openssl app called with no args.
This is a result of removal of interactive mode. Redirected it to now use 'openssl help'. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12164)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/20-test_app.t25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/recipes/20-test_app.t b/test/recipes/20-test_app.t
new file mode 100644
index 0000000000..e7246565f2
--- /dev/null
+++ b/test/recipes/20-test_app.t
@@ -0,0 +1,25 @@
+#! /usr/bin/env perl
+# Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
+use strict;
+use warnings;
+
+use OpenSSL::Test;
+
+setup("test_app");
+
+plan tests => 3;
+
+ok(run(app(["openssl"])),
+ "Run openssl app with no args");
+
+ok(run(app(["openssl", "help"])),
+ "Run openssl app with help");
+
+ok(!run(app(["openssl", "-help"])),
+ "Run openssl app with incorrect arg");