We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a6e586 + 6c57c9f commit d0917b0Copy full SHA for d0917b0
tools/test_api.py
@@ -2276,6 +2276,9 @@ def test_spec_from_test_builds(test_builds):
2276
2277
if test_builds[build]['platform'].endswith('_NPSA'):
2278
test_builds[build]['platform'] = test_builds[build]['platform'][:-5]
2279
+ # Convert Dual Core target name to test spec platform name
2280
+ if test_builds[build]['platform'].endswith('_CM4') or test_builds[build]['platform'].endswith('_CM7'):
2281
+ test_builds[build]['platform'] = test_builds[build]['platform'][:-4]
2282
return {
2283
"builds": test_builds
2284
}
0 commit comments