Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
testdata/ | 22-Nov-2023 | - | 151 | 138 | ||
OWNERS | D | 22-Nov-2023 | 61 | 4 | 3 | |
README.md | D | 22-Nov-2023 | 928 | 25 | 19 | |
abstract_build_file_handler.py | D | 22-Nov-2023 | 1.3 KiB | 37 | 15 | |
custom_build_file_handler.py | D | 22-Nov-2023 | 1 KiB | 30 | 9 | |
incremental_deqp.py | D | 22-Nov-2023 | 23 KiB | 638 | 495 | |
incremental_deqp_test.py | D | 22-Nov-2023 | 8 KiB | 174 | 131 | |
target_file_handler.py | D | 22-Nov-2023 | 1.5 KiB | 44 | 22 | |
target_file_handler_test.py | D | 22-Nov-2023 | 1.5 KiB | 40 | 18 |
README.md
1# Note 2incremental-cts is an EXPERIMENTAL project. It's for analysis purpose only and is NOT meant to be used for approval runs. 3 4# Examples 5 6## Generate dEQP dependency 7This command will generate a dEQP dependency file named `dEQP-dependency.txt`: 8``` 9python3 incremental_deqp.py -s device_serial_number -t /path/to/test_resources 10--generate_deps_only 11``` 12 13## Check if current build could skip dEQP 14 15Before running this command, please create `extra_deqp_dependency.txt` file and 16copy it to test resources directory. `extra_deqp_dependency.txt` includes the 17dEQP dependencies that can't be detected by this tool such as firmwares. 18``` 19python3 incremental_deqp.py -s device_serial_number -t /path/to/test_resources 20-b /path/to/target_file 21``` 22 23Target file is an build artifact produced by Android build system, e.g. 24https://ci.android.com/builds/submitted/7230538/aosp_arm64-userdebug/latest/aosp_arm64-target_files-7230538.zip 25