commit | 13db25fbe92e06b45368374e03cc26bfa82ec9fb | [log] [tgz] |
---|---|---|
author | Arto Kinnunen <arto.kinnunen@arm.com> | Fri Sep 27 13:06:25 2019 +0300 |
committer | Arto Kinnunen <arto.kinnunen@arm.com> | Fri Sep 27 13:06:25 2019 +0300 |
tree | 328f336c834f5ef2f46cfab6d5816dce313d3e7b | |
parent | c457ab1c2b79860034305f524e743eda5b8a7d9a [diff] |
ssl-opt.sh: Fix requires_config_value_exactly Fix comparison bug in requires_config_value_exactly.
diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index 8136326..a39ca3e 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh
@@ -210,7 +210,7 @@ # Should never happen echo "Mbed TLS configuration $1 is not defined" exit 1 - elif [ "$VAL" -eq "$2" ]; then + elif [ "$VAL" -ne "$2" ]; then SKIP_NEXT="YES" fi }