Skip to content

Commit

Permalink
- remove orphaned function.
Browse files Browse the repository at this point in the history
- at gcov options to project.yml files
  • Loading branch information
mvandervoord committed Oct 19, 2024
1 parent b2e8535 commit cb01ae0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
2 changes: 2 additions & 0 deletions assets/project_as_gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@
# You will need to have gcov and gcovr both installed to make it work.
# For more information on these options, see docs in plugins/gcov
:gcov:
:summaries: TRUE # Enable simple coverage summaries to console after tests
:report_task: FALSE # Disabled dedicated report generation task (this enables automatic report generation)
:utilities:
- gcovr # Use gcovr to create the specified reports (default).
#- ReportGenerator # Use ReportGenerator to create the specified reports.
Expand Down
2 changes: 2 additions & 0 deletions assets/project_with_guts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@
# You will need to have gcov and gcovr both installed to make it work.
# For more information on these options, see docs in plugins/gcov
:gcov:
:summaries: TRUE # Enable simple coverage summaries to console after tests
:report_task: FALSE # Disabled dedicated report generation task (this enables automatic report generation)
:utilities:
- gcovr # Use gcovr to create the specified reports (default).
#- ReportGenerator # Use ReportGenerator to create the specified reports.
Expand Down
23 changes: 0 additions & 23 deletions lib/ceedling/test_invoker_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -254,29 +254,6 @@ def clean_test_results(path, tests)
end
end

def generate_objects_now(object_list, context, options)
@batchinator.exec(workload: :compile, things: object_list) do |object|
src = @file_finder.find_build_input_file(filepath: object, context: TEST_SYM)
if (File.basename(src) =~ /#{EXTENSION_SOURCE}$/)
@generator.generate_object_file(
options[:test_compiler],
OPERATION_COMPILE_SYM,
context,
src,
object,
@file_path_utils.form_test_build_list_filepath( object ),
@file_path_utils.form_test_dependencies_filepath( object ))
elsif (defined?(TEST_BUILD_USE_ASSEMBLY) && TEST_BUILD_USE_ASSEMBLY)
@generator.generate_object_file(
options[:test_assembler],
OPERATION_ASSEMBLE_SYM,
context,
src,
object )
end
end
end

# Convert libraries configuration form YAML configuration
# into a string that can be given to the compiler.
def convert_libraries_to_arguments()
Expand Down

0 comments on commit cb01ae0

Please sign in to comment.