Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix run_testsuite.py so it works if not all of the apps are specified. (
#25600) When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after #25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
- Loading branch information