Changed test driver include folder to reflect it's a test driver
Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
This commit is contained in:
parent
831c695787
commit
0d7c64dd8f
9 changed files with 10 additions and 10 deletions
|
@ -33,7 +33,7 @@
|
||||||
#ifndef PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
#ifndef PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
||||||
#define PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
#define PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
||||||
#endif
|
#endif
|
||||||
#include "drivers/test_driver.h"
|
#include "test/drivers/test_driver.h"
|
||||||
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
||||||
|
|
||||||
/* Repeat above block for each JSON-declared driver during autogeneration */
|
/* Repeat above block for each JSON-declared driver during autogeneration */
|
||||||
|
|
|
@ -39,7 +39,7 @@ my $psa_header_dir = 'include/psa';
|
||||||
my $source_dir = 'library';
|
my $source_dir = 'library';
|
||||||
my $test_source_dir = 'tests/src';
|
my $test_source_dir = 'tests/src';
|
||||||
my $test_header_dir = 'tests/include/test';
|
my $test_header_dir = 'tests/include/test';
|
||||||
my $test_drivers_header_dir = 'tests/include/drivers';
|
my $test_drivers_header_dir = 'tests/include/test/drivers';
|
||||||
|
|
||||||
my @thirdparty_header_dirs = qw(
|
my @thirdparty_header_dirs = qw(
|
||||||
3rdparty/everest/include/everest
|
3rdparty/everest/include/everest
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#define PSA_CRYPTO_TEST_DRIVER_LIFETIME 0x7fffff
|
#define PSA_CRYPTO_TEST_DRIVER_LIFETIME 0x7fffff
|
||||||
|
|
||||||
#include "drivers/signature.h"
|
#include "test/drivers/signature.h"
|
||||||
#include "drivers/keygen.h"
|
#include "test/drivers/keygen.h"
|
||||||
|
|
||||||
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|
|
@ -30,7 +30,7 @@
|
||||||
#include "mbedtls/ecp.h"
|
#include "mbedtls/ecp.h"
|
||||||
#include "mbedtls/error.h"
|
#include "mbedtls/error.h"
|
||||||
|
|
||||||
#include "drivers/keygen.h"
|
#include "test/drivers/keygen.h"
|
||||||
|
|
||||||
#include "test/random.h"
|
#include "test/random.h"
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include "psa_crypto_core.h"
|
#include "psa_crypto_core.h"
|
||||||
#include "mbedtls/ecp.h"
|
#include "mbedtls/ecp.h"
|
||||||
|
|
||||||
#include "drivers/signature.h"
|
#include "test/drivers/signature.h"
|
||||||
|
|
||||||
#include "mbedtls/md.h"
|
#include "mbedtls/md.h"
|
||||||
#include "mbedtls/ecdsa.h"
|
#include "mbedtls/ecdsa.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* BEGIN_HEADER */
|
/* BEGIN_HEADER */
|
||||||
#include "test/psa_crypto_helpers.h"
|
#include "test/psa_crypto_helpers.h"
|
||||||
|
|
||||||
#include "drivers/test_driver.h"
|
#include "test/drivers/test_driver.h"
|
||||||
/* END_HEADER */
|
/* END_HEADER */
|
||||||
|
|
||||||
/* BEGIN_DEPENDENCIES
|
/* BEGIN_DEPENDENCIES
|
||||||
|
|
|
@ -238,9 +238,9 @@
|
||||||
<ClInclude Include="..\..\tests\include\test\psa_crypto_helpers.h" />
|
<ClInclude Include="..\..\tests\include\test\psa_crypto_helpers.h" />
|
||||||
<ClInclude Include="..\..\tests\include\test\psa_helpers.h" />
|
<ClInclude Include="..\..\tests\include\test\psa_helpers.h" />
|
||||||
<ClInclude Include="..\..\tests\include\test\random.h" />
|
<ClInclude Include="..\..\tests\include\test\random.h" />
|
||||||
<ClInclude Include="..\..\tests\include\drivers\keygen.h" />
|
<ClInclude Include="..\..\tests\include\test\drivers\keygen.h" />
|
||||||
<ClInclude Include="..\..\tests\include\drivers\signature.h" />
|
<ClInclude Include="..\..\tests\include\test\drivers\signature.h" />
|
||||||
<ClInclude Include="..\..\tests\include\drivers\test_driver.h" />
|
<ClInclude Include="..\..\tests\include\test\drivers\test_driver.h" />
|
||||||
<ClInclude Include="..\..\library\common.h" />
|
<ClInclude Include="..\..\library\common.h" />
|
||||||
<ClInclude Include="..\..\library\psa_crypto_core.h" />
|
<ClInclude Include="..\..\library\psa_crypto_core.h" />
|
||||||
<ClInclude Include="..\..\library\psa_crypto_driver_wrappers.h" />
|
<ClInclude Include="..\..\library\psa_crypto_driver_wrappers.h" />
|
||||||
|
|
Loading…
Reference in a new issue