Home
last modified time | relevance | path

Searched full:tests (Results 1 – 25 of 26) sorted by relevance

12

/lvgl-3.7.0/tests/
DREADME.md1 # 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 …]
Dmain.py85 '''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.')
DCMakeLists.txt4 # Tests do not build for ESP-IDF. #
/lvgl-3.7.0/tests/unity/
Dgenerate_test_runner.rb68 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 …]
Dunity.h37 * 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
Dunity.c68 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()
Dunity_support.c29 //#define REF_IMGS_PATH "lvgl/tests/lv_test_ref_imgs/"
/lvgl-3.7.0/docs/
DCHANGELOG.md72 ### 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 …]
DCONTRIBUTING.md76 - `test` anything related to tests (new and updated tests or CI actions)
/lvgl-3.7.0/.github/workflows/
Dccpp.yml16 # 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
Dbuild_micropython.yml69 - name: Run tests
73 lib/lv_bindings/tests/run.sh
Dmakefile.yml20 working-directory: tests/makefile
/lvgl-3.7.0/
D.gitignore23 tests/build_*/
24 tests/report/
D.pre-commit-config.yaml23 tests/src/test_cases/
/lvgl-3.7.0/scripts/
Dcode-format.py14 print("\nFormatting tests")
15 os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')
Dcode-format.cfg42 --exclude=../tests/src/test_cases/_test_template.c
Dchangelog-template.hbs84 ### CI and tests
/lvgl-3.7.0/demos/benchmark/
DREADME.md5 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/
Dqrcodegen.h233 * 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.
Dqrcodegen.c723 // 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/
Dstb_rect_pack.h17 // Has only had a few tests run, may have issues.
Dstb_truetype_htcw.h277 // 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/
Dlv_colorwheel.c25 …* integer based arithmetic. From tests the maximum delta was found to be 2 so the current value is…
/lvgl-3.7.0/src/misc/
Dlv_tlsf.c1054 printf("test_ffs_fls: %x ffs/fls tests failed.\n", rv); in test_ffs_fls()
/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.h960 public interface only for tests, it's used internally by lodepng_deflate.

12