aboutsummaryrefslogtreecommitdiff
path: root/tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c')
-rw-r--r--tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c62
1 files changed, 0 insertions, 62 deletions
diff --git a/tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c b/tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c
deleted file mode 100644
index d5d3e40134..0000000000
--- a/tools/tf_fuzz/regression/000011_read_nonexistent_sst_check_string_expect_pass/exp_test.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Test purpose:
- * to illustrate that you can override TF-Fuzz's expected result
- *
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <time.h>
-#include <string.h>
-#include <stdint.h>
-
-#include "../sst/non_secure/ns_test_helpers.h"
-#include "psa/protected_storage.h"
-#include "test/framework/test_framework_helpers.h"
-#include "tfm_memory_utils.h"
-#include "psa/crypto.h"
-#include "psa/crypto_sizes.h"
-
-/* This is not yet right for how to run a test; need to register tests, etc. */
-
-void test_thread (struct test_result_t *ret) {
- psa_status_t crypto_status; /* result from Crypto calls */
- psa_status_t sst_status;
- /* Variables (etc.) to initialize and check PSA assets: */
- static uint8_t napoleon_exp_data[] = "this won't work";
- static uint8_t napoleon_act_data\[2048\] = "[A-Z][a-z ]*[\.\?\!]";
- static size_t napoleon_act_length = \d+;
- (void)sst_status;
- /* "void" to prevent unused-variable warning, since the variable may not
- * be used in this particular test case.
- */
-
- crypto_status = psa_crypto_init();
- if (crypto_status != PSA_SUCCESS) {
- TEST_FAIL("Could not initialize Crypto.");
- return;
- }
-
- TEST_LOG("Test to illustrate that you can override TF-Fuzz's expected result");
-
-
- /* PSA calls to test: */
- sst_status = psa_ps_get\(\d+, 0, @@@001@@@, napoleon_act_data,
- &napoleon_act_length);
- if (sst_status != PSA_SUCCESS) {
- TEST_FAIL("psa_ps_get() expected PSA_SUCCESS.");
- return;
- }
- /* Check that the data is correct */
- if \(tfm_memcmp\(napoleon_act_data, napoleon_exp_data,
- napoleon_act_length\) != 0\) \{
- TEST_FAIL("Read data should be equal to result data");
- return;
- }
-
-
- /* Removing assets left over from testing: */
-
- /* Test completed */
- ret->val = TEST_PASSED;
-}