Skip to content

Build test on debug only#45

Merged
tezc merged 5 commits into
masterfrom
build-test-on-debug
Feb 16, 2021
Merged

Build test on debug only#45
tezc merged 5 commits into
masterfrom
build-test-on-debug

Conversation

@tezc

@tezc tezc commented Feb 16, 2021

Copy link
Copy Markdown
Owner

No description provided.

@codecov

codecov Bot commented Feb 16, 2021

Copy link
Copy Markdown

Codecov Report

Merging #45 (77e697a) into master (ed5bcab) will not change coverage.
The diff coverage is 100.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #45   +/-   ##
=======================================
  Coverage   98.11%   98.11%           
=======================================
  Files          23       23           
  Lines        2231     2231           
  Branches      384      384           
=======================================
  Hits         2189     2189           
  Partials       42       42           
Impacted Files Coverage Δ
condition/sc_cond.c 97.95% <ø> (ø)
mutex/sc_mutex.c 100.00% <ø> (ø)
time/sc_time.c 100.00% <ø> (ø)
signal/sc_signal.c 95.23% <100.00%> (ø)
thread/sc_thread.c 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ed5bcab...77e697a. Read the comment docs.

@rafaeldelboni

Copy link
Copy Markdown
Contributor

Still getting some warnings on sc_threads

/home/delboni/Workspace/c/sc/thread/sc_thread.c: In function ‘sc_thread_start’:
/home/delboni/Workspace/c/sc/thread/sc_thread.c:127:9: error: ‘strncpy’ specified bound 128 equals destination size [-Werror=stringop-truncation]
  127 |         strncpy(thread->err, strerror(rc), sizeof(thread->err));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/delboni/Workspace/c/sc/thread/sc_thread.c:118:9: error: ‘strncpy’ specified bound 128 equals destination size [-Werror=stringop-truncation]
  118 |         strncpy(thread->err, strerror(rc), sizeof(thread->err));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[ 79%] Built target sc_option
[ 79%] Built target sc_heap
/home/delboni/Workspace/c/sc/thread/sc_thread.c: In function ‘sc_thread_join’:
/home/delboni/Workspace/c/sc/thread/sc_thread.c:147:9: error: ‘strncpy’ specified bound 128 equals destination size [-Werror=stringop-truncation]
  147 |         strncpy(thread->err, strerror(rc), sizeof(thread->err));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

@rafaeldelboni

rafaeldelboni commented Feb 16, 2021

Copy link
Copy Markdown
Contributor

Just add - 1 at the end of those lines:

        strncpy(thread->err, strerror(rc), sizeof(thread->err) - 1);

@rafaeldelboni

Copy link
Copy Markdown
Contributor

You missed line 147 sc/thread/sc_thread.c:147 :)

@tezc

tezc commented Feb 16, 2021

Copy link
Copy Markdown
Owner Author

wow, my gcc & clang don't complain about that. Probably I and CI have older versions, I'll add newer versions to CI.

@rafaeldelboni

rafaeldelboni commented Feb 16, 2021

Copy link
Copy Markdown
Contributor

I usually have to clean the build folder or make a different one for release and debug to have these warnings showing on haha

Thanks, is working fine now!

closes #44

@rafaeldelboni rafaeldelboni left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

closes #44

@tezc

tezc commented Feb 16, 2021

Copy link
Copy Markdown
Owner Author

Thanks a lot for issue & review

@tezc tezc merged commit 950d6f1 into master Feb 16, 2021
@tezc tezc deleted the build-test-on-debug branch February 16, 2021 01:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants