summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-19 11:21:25 +0100
committerMatt Caswell <matt@openssl.org>2016-11-04 10:38:54 +0000
commit06e452fbc166339aa28280f4f6f2ba3e958cfbd6 (patch)
tree0f8955059a7200f7dd3e2f18f7fa9a4637526879
parent8beda2c12dc58389dd3c036b0858e15b010567da (diff)
Use the -allow-unimplemented feature of the BoringSSL runner
That way we can remove flags that we don't support Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--test/ossl_shim/test_config.cc1
-rw-r--r--test/recipes/90-test_external.t2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/ossl_shim/test_config.cc b/test/ossl_shim/test_config.cc
index 3002137149..f7ae8e67a7 100644
--- a/test/ossl_shim/test_config.cc
+++ b/test/ossl_shim/test_config.cc
@@ -191,6 +191,7 @@ bool ParseConfig(int argc, char **argv, TestConfig *out_config) {
}
fprintf(stderr, "Unknown argument: %s\n", argv[i]);
+ exit(89);
return false;
}
diff --git a/test/recipes/90-test_external.t b/test/recipes/90-test_external.t
index 49e2bd2005..a3da76ccbd 100644
--- a/test/recipes/90-test_external.t
+++ b/test/recipes/90-test_external.t
@@ -24,7 +24,7 @@ indir $ENV{BORING_RUNNER_DIR} => sub {
srctop_file("test", "ossl_shim", "ossl_shim"),
"-shim-config",
srctop_file("test", "ossl_shim", "ossl_config.json"),
- "-pipe"])),
+ "-pipe", "-allow-unimplemented"])),
"running external tests");
}, create => 0, cleanup => 0;