Bitcoin Forum
June 19, 2024, 07:01:41 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bitcoin Core 0.23.0 in progress...  (Read 94 times)
cygan (OP)
Legendary
*
Offline Offline

Activity: 3192
Merit: 8180


Crypto Swap Exchange


View Profile WWW
February 25, 2022, 03:59:42 PM
Last edit: February 25, 2022, 07:29:12 PM by cygan
Merited by ABCbits (1)
 #1

happened to come across this tweet today, in which the developer Marco Falke shares with the public the further development compared to the current 0.22.0 version Smiley
since i unfortunately don't know that much about it, it would be nice if someone could explain the graphic shown for a normal user like me Lips sealed


Quote
60% overall line coverage with fuzz tests. The upcoming Bitcoin Core 23.0 release will be the most fuzzed release.
https://twitter.com/MarcoFalke/status/1497215035617202176
https://marcofalke.github.io/btc_cov/fuzz.coverage/index.html

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
CASINO
.
SPORTS
.
RACING
EVENT DETAILS
EURO 2024
NotATether
Legendary
*
Offline Offline

Activity: 1638
Merit: 6898


bitcoincleanup.com / bitmixlist.org


View Profile WWW
February 26, 2022, 11:47:36 AM
Merited by NeuroticFish (2), cygan (2), ABCbits (2)
 #2

This is just a chart that shows how much of the source code is ran by some test program in the /tests folder. It basically measures how much of the source code (lines, functions, and if/else paths) is covered by tests and the results are grouped by directory. It is used in profiling to see which functions are called the most so they can potentially be optimized.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
NotATether
Legendary
*
Offline Offline

Activity: 1638
Merit: 6898


bitcoincleanup.com / bitmixlist.org


View Profile WWW
February 26, 2022, 12:06:36 PM
 #3

It's surprising source code for wallet have very low coverage (only 18.6% of function covered).

This is the coverage report for the "fuzz tests", a kind of test where you supply random, arbitrary data to functions and check if they crash, leak memory, or throw an exception. Other tests may have higher coverage for these folders. If you ask me, it's probably due to a lack of test cases written for these subsystems.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
cygan (OP)
Legendary
*
Offline Offline

Activity: 3192
Merit: 8180


Crypto Swap Exchange


View Profile WWW
February 26, 2022, 12:17:12 PM
 #4

@NotATether
many thanks for the clarification Smiley
have then in relation to all the developer posts again learned something new to it

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
CASINO
.
SPORTS
.
RACING
EVENT DETAILS
EURO 2024
PawGo
Legendary
*
Offline Offline

Activity: 952
Merit: 1367


View Profile
February 26, 2022, 12:41:52 PM
 #5

It makes me wonder if they would like to share results from unit tests coverage check. Hmmm maybe if I have nothing better to do I will launch Bitcoin Core project in Sonarqube and see results.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!