Home
last modified time | relevance | path

Searched +full:ruby +full:- +full:full (Results 1 – 4 of 4) sorted by relevance

/lvgl-latest/tests/
Dmain.py19 'OPTIONS_FULL_32BIT': 'Full config, 32 bit color depth',
56 r = f[:-2] + "_Runner.c"
58 subprocess.check_call(['ruby', 'unity/generate_test_runner.rb',
72 Does not return the full path to the directory - just the base name.'''
108 subprocess.check_call(['cmake', '-DCMAKE_BUILD_TYPE=%s' % build_type,
109 '-D%s=1' % options_name, '..'])
110 subprocess.check_call(['cmake', '--build', build_dir,
111 '--parallel', str(os.cpu_count())])
126 ['ctest', '--timeout', '30', '--parallel', str(os.cpu_count()), '--output-on-failure'])
146 cmd = ['gcovr', '--root', root_dir, '--html-details', '--output',
[all …]
/lvgl-latest/scripts/
Dinstall-prerequisites.sh4 # and testing. Some less-common development packages are not included
9 sudo apt install gcc python3 libpng-dev ruby-full gcovr cmake
/lvgl-latest/.github/workflows/
Dccpp.yml12 runs-on: ubuntu-latest
24 - uses: actions/checkout@v2
25 - uses: ammaraskar/gcc-problem-matcher@master
26 - name: Install prerequisites
27 run: scripts/install-prerequisites.sh
28 - name: Building ${{ matrix.build_option }}
29 run: python tests/main.py --build-option=${{ matrix.build_option }} build
31 test-native:
32 runs-on: ubuntu-latest
35 - uses: actions/checkout@v2
[all …]
/lvgl-latest/tests/unity/
Dgenerate_test_runner.rb2 # Unity Project - A Test Framework for C
67 source = source.force_encoding('ISO-8859-1').encode('utf-8', replace: nil)
72 testfile_includes = (testfile_includes - used_mocks)
122 …ce_scrubbed.gsub(/\\"/, '@quote@') # hide escaped quotes to allow capture of the full string/char
123 …rubbed.gsub(/\\'/, '@apos@') # hide escaped apostrophes to allow capture of the full string/char
146 …args += range_str.scan(/\[\s*(-?\d+.?\d*),\s*(-?\d+.?\d*),\s*(-?\d+.?\d*)\s*\]/).map do |arg_value…
169 source_lines[source_index..-1].each_with_index do |line, index|
209 … @options[:has_suite_teardown] ||= (source =~ /int\s+suiteTearDown\s*\(int\s+([a-zA-Z0-9_])+\s*\)/)
435 filename = File.basename(filename).gsub(/[-\/\\\.\,\s]/, '_').upcase
465 when '-cexception'
[all …]