From: Matt Caswell Date: Wed, 19 Oct 2016 10:21:25 +0000 (+0100) Subject: Use the -allow-unimplemented feature of the BoringSSL runner X-Git-Tag: OpenSSL_1_1_1-pre1~3237 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=06e452fbc166339aa28280f4f6f2ba3e958cfbd6;ds=sidebyside Use the -allow-unimplemented feature of the BoringSSL runner That way we can remove flags that we don't support Reviewed-by: Richard Levitte --- 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;