From 4e4c66b057bc725fc6fa631fe08b51d93f76f0c6 Mon Sep 17 00:00:00 2001 From: Mike Karlesky Date: Thu, 22 Feb 2024 22:28:14 -0500 Subject: [PATCH] System test fixes --- spec/gcov/gcov_test_cases_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/gcov/gcov_test_cases_spec.rb b/spec/gcov/gcov_test_cases_spec.rb index 9dc30bed..f5e58580 100644 --- a/spec/gcov/gcov_test_cases_spec.rb +++ b/spec/gcov/gcov_test_cases_spec.rb @@ -186,7 +186,7 @@ def can_create_html_report FileUtils.cp test_asset_path("test_example_file_success.c"), 'test/' output = `bundle exec ruby -S ceedling gcov:all` - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end end @@ -216,7 +216,7 @@ def can_create_gcov_html_report_from_crashing_test_runner_with_enabled_debug_and expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:50.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end @@ -247,7 +247,7 @@ def can_create_gcov_html_report_from_crashing_test_runner_with_enabled_debug_and expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:0.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end @@ -282,7 +282,7 @@ def can_create_gcov_html_report_from_test_runner_with_enabled_debug_and_cmd_args expect(output).to match(/IGNORED:\s+0/) expect(output).to match(/example_file.c \| Lines executed:100.00% of 4/) - expect(output).to match(/Creating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) + expect(output).to match(/Generating HTML coverage report in 'build\/artifacts\/gcov\/gcovr'\.\.\./) expect(output).to match(/Done/) expect(File.exist?('build/artifacts/gcov/gcovr/GcovCoverageResults.html')).to eq true end