Lines Matching full:dependencies
3 """Edit test cases to use PSA dependencies instead of classic dependencies.
124 """Return the dependencies for a symbol that designates a cryptographic mechanism."""
168 def updated_dependencies(file_name, function_name, arguments, dependencies): argument
169 """Rework the list of dependencies into PSA_WANT_xxx.
171 Remove classic crypto dependencies such as MBEDTLS_RSA_C,
174 Add systematic PSA_WANT_xxx dependencies based on the called function and
175 its arguments, replacing existing PSA_WANT_xxx dependencies.
178 manual = [dep for dep in dependencies
185 """Declare test functions with unusual dependencies here."""
187 # there are dependencies, they are warranted.
199 """Update PSA crypto dependencies in one Mbed TLS test case.
201 stanza is the test case text (including the description, the dependencies,
209 # Expect 2 or 3 non-comment lines: description, optional dependencies,
223 # Insert a line for the dependencies. If it turns out that there are
224 # no dependencies, we'll remove that empty line below.
247 # The dependencies have become empty. Remove the depends_on: line.
253 """Update PSA crypto dependencies in an Mbed TLS test suite data file.
278 """Update PSA crypto dependencies in an Mbed TLS test suite data file.