mirror of
https://github.com/espressif/mbedtls.git
synced 2025-06-25 19:23:57 +08:00
Adjust paths for impending moves to the framework
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
45a32b1549
commit
738a597953
@ -22,7 +22,7 @@ Each test case has a description which succinctly describes for a human audience
|
|||||||
* Make the description descriptive. “foo: x=2, y=4” is more descriptive than “foo #2”. “foo: 0<x<y, both even” is even better if these inequalities and parities are why this particular test data was chosen.
|
* Make the description descriptive. “foo: x=2, y=4” is more descriptive than “foo #2”. “foo: 0<x<y, both even” is even better if these inequalities and parities are why this particular test data was chosen.
|
||||||
* Avoid changing the description of an existing test case without a good reason. This breaks the tracking of failures across CI runs, since this tracking is based on the descriptions.
|
* Avoid changing the description of an existing test case without a good reason. This breaks the tracking of failures across CI runs, since this tracking is based on the descriptions.
|
||||||
|
|
||||||
`tests/scripts/check_test_cases.py` enforces some rules and warns if some guidelines are violated.
|
`framework/scripts/check_test_cases.py` enforces some rules and warns if some guidelines are violated.
|
||||||
|
|
||||||
## TLS tests
|
## TLS tests
|
||||||
|
|
||||||
|
@ -8,7 +8,8 @@ less likely to be useful.
|
|||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
import outcome_analysis
|
import scripts_path # pylint: disable=unused-import
|
||||||
|
from mbedtls_framework import outcome_analysis
|
||||||
|
|
||||||
|
|
||||||
class CoverageTask(outcome_analysis.CoverageTask):
|
class CoverageTask(outcome_analysis.CoverageTask):
|
||||||
|
@ -14,7 +14,7 @@ import re
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
import scripts_path # pylint: disable=unused-import
|
import scripts_path # pylint: disable=unused-import
|
||||||
import collect_test_cases
|
from mbedtls_framework import collect_test_cases
|
||||||
|
|
||||||
|
|
||||||
class DescriptionChecker(collect_test_cases.TestDescriptionExplorer):
|
class DescriptionChecker(collect_test_cases.TestDescriptionExplorer):
|
||||||
|
@ -68,7 +68,7 @@ component_check_test_cases () {
|
|||||||
else
|
else
|
||||||
opt=''
|
opt=''
|
||||||
fi
|
fi
|
||||||
tests/scripts/check_test_cases.py -q $opt
|
framework/scripts/check_test_cases.py -q $opt
|
||||||
unset opt
|
unset opt
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user