Searched full:tests (Results 1 – 25 of 26) sorted by relevance
12
/lvgl-3.7.0/tests/ |
D | README.md | 1 # Tests for LVGL 3 The tests in the folder can be run locally and automatically by GitHub CI. 16 1. Run all executable tests with `./tests/main.py test`. 17 2. Build all build-only tests with `./tests/main.py build`. 18 3. Clean prior test build, build all build-only tests, 19 run executable tests, and generate code coverage 20 report `./tests/main.py --clean --report build test`. 22 For full information on running tests run: `./tests/main.py --help`. 26 GitHub's CI automatically runs these tests on pushes and pull requests to `master` and `releasev8.*… 29 - `src` Source files of the tests [all …]
|
D | main.py | 85 '''Build all tests for the specified options name.''' 115 '''Run the tests for the given options name.''' 119 label = 'Running tests for %s' % options_abbrev(options_name) 159 There are two types of LVGL tests: "build", and "test". The build-only 160 tests, as their name suggests, only verify that the program successfully 162 tests that execute to verify correct LVGL library behavior. 165 description='Build and/or run LVGL tests.', epilog=epilog) 173 help='generate code coverage report for tests.') 175 help='build: compile build tests, test: compile/run executable tests.')
|
D | CMakeLists.txt | 4 # Tests do not build for ESP-IDF. #
|
/lvgl-3.7.0/tests/unity/ |
D | generate_test_runner.rb | 68 tests = find_tests(source) 77 generate(input_file, output_file, tests, used_mocks, testfile_includes) 87 def generate(input_file, output_file, tests, used_mocks, testfile_includes) argument 90 create_externs(output, tests, used_mocks) 97 create_run_test(output) unless tests.empty? 98 create_args_wrappers(output, tests) 99 create_main(output, input_file, tests, used_mocks) 105 create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks) 132 # find tests 165 # determine line numbers and create tests to run [all …]
|
D | unity.h | 37 * entire test suite. suiteTearDown() is passed the number of tests that 49 /* These functions are intended to be called before during tests in order 88 …e UNITY_COUNTER_TYPE with a different type if you want to save space or have more than 65535 Tests. 93 * Parameterized Tests 96 * Tests with Arguments
|
D | unity.c | 68 static const char PROGMEM UnityStrResultsTests[] = " Tests "; 1923 case 'l': /* list tests */ in UnityParseOptions() 1925 case 'n': /* include tests with name including this string */ in UnityParseOptions() 1948 case 'x': /* exclude tests with name including this string */ in UnityParseOptions()
|
D | unity_support.c | 29 //#define REF_IMGS_PATH "lvgl/tests/lv_test_ref_imgs/"
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 72 ### CI and tests 155 ### CI and tests 214 ### CI and tests 244 ### CI and tests 314 ### CI and tests 614 ### CI and tests 617 - test(line): add unit tests for line widget [`3104`](https://github.com/lvgl/lvgl/pull/3104) 620 - test(table): add unit tests [`3040`](https://github.com/lvgl/lvgl/pull/3040) 626 - ci make sure LVGL assertions cause tests to fail [`b83c5aa`](https://github.com/lvgl/lvgl/commit/… 630 - ci limit tests to 15 seconds [`003f18f`](https://github.com/lvgl/lvgl/commit/003f18f86c5c72892057… [all …]
|
D | CONTRIBUTING.md | 76 - `test` anything related to tests (new and updated tests or CI actions)
|
/lvgl-3.7.0/.github/workflows/ |
D | ccpp.yml | 16 # See BUILD_OPTIONS in tests/CMakeLists.txt. 29 run: python tests/main.py --build-option=${{ matrix.build_option }} build 33 name: amd64 Executable Tests 44 - name: Run tests 45 run: python tests/main.py --report test 55 name: ${{ matrix.arch }} Executable Tests 74 name: Run tests 109 env PATH="/usr/lib/ccache:$PATH" ASAN_OPTIONS=detect_leaks=0 python3 tests/main.py test
|
D | build_micropython.yml | 69 - name: Run tests 73 lib/lv_bindings/tests/run.sh
|
D | makefile.yml | 20 working-directory: tests/makefile
|
/lvgl-3.7.0/ |
D | .gitignore | 23 tests/build_*/ 24 tests/report/
|
D | .pre-commit-config.yaml | 23 tests/src/test_cases/
|
/lvgl-3.7.0/scripts/ |
D | code-format.py | 14 print("\nFormatting tests") 15 os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')
|
D | code-format.cfg | 42 --exclude=../tests/src/test_cases/_test_template.c
|
D | changelog-template.hbs | 84 ### CI and tests
|
/lvgl-3.7.0/demos/benchmark/ |
D | README.md | 5 The benchmark demo tests the performance in various cases. 7 All tests are repeated with 50% opacity.
|
/lvgl-3.7.0/src/extra/libs/qrcode/ |
D | qrcodegen.h | 233 * Tests whether the given string can be encoded as a segment in alphanumeric mode. 241 * Tests whether the given string can be encoded as a segment in numeric mode.
|
D | qrcodegen.c | 723 // Tests whether the given run history has the pattern of ratio 1:1:3:1:1 in the middle, and
|
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | stb_rect_pack.h | 17 // Has only had a few tests run, may have issues.
|
D | stb_truetype_htcw.h | 277 // See "tests/truetype_demo_win32.c" for a complete version. 661 // stb/tests/oversample for information about oversampled fonts
|
/lvgl-3.7.0/src/extra/widgets/colorwheel/ |
D | lv_colorwheel.c | 25 …* integer based arithmetic. From tests the maximum delta was found to be 2 so the current value is…
|
/lvgl-3.7.0/src/misc/ |
D | lv_tlsf.c | 1054 printf("test_ffs_fls: %x ffs/fls tests failed.\n", rv); in test_ffs_fls()
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.h | 960 public interface only for tests, it's used internally by lodepng_deflate.
|
12