diff options
author | Matt Caswell <matt@openssl.org> | 2016-10-19 12:21:25 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-04 11:38:54 +0100 |
commit | 06e452fbc166339aa28280f4f6f2ba3e958cfbd6 (patch) | |
tree | 0f8955059a7200f7dd3e2f18f7fa9a4637526879 /test/ossl_shim/test_config.cc | |
parent | Remove unused BoringSSL specific flags (diff) | |
download | openssl-06e452fbc166339aa28280f4f6f2ba3e958cfbd6.tar.xz openssl-06e452fbc166339aa28280f4f6f2ba3e958cfbd6.zip |
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>
Diffstat (limited to 'test/ossl_shim/test_config.cc')
-rw-r--r-- | test/ossl_shim/test_config.cc | 1 |
1 files changed, 1 insertions, 0 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; } |