ypconstante
How to enable the native code coverage from OTP 27?
I’m trying to enable the native coverage from OTP 27, but so far nothing has worked.
I’ve added erlc_options: [:debug_info, :line_coverage, {:line_coverage, true}] to the project config and set the environment variable ERL_AFLAGS="+JPcover true", but it didn’t do anything.
I added these lines to a test to see what is happening:
dbg :code.coverage_support() # true
dbg :code.get_coverage_mode() # :line_counters
dbg :code.get_coverage_mode(mod) # :none
All project modules have :none as the coverage mode, only if I run with :cover that it changes to :line_counters.
Is there a way to have coverage without :cover compiling the modules? Locally :cover compile takes 7 seconds, so I’m trying to find a way to speed it up, or to have coverage without using it.
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 7 of 7 Posts!
D4no0
Doesn’t the compilation get cached?
ypconstante
It doesn’t, after running
time mix test some_test_file.exs --covermultiple times,Test output:
Time output:
:covercompiling takes 7 seconds, and then the rest of the time is spent on creating the summary and HTML generation. On CI--coveradds a whole minute, which is the main reason I wanted to enable this native coverage.ypconstante
I did make some progress, but still didn’t manage to make it work
Environment variables
:code.get_coverageis returning an empty list, but if I init:coverit returns the expected data.josevalim
I believe cover will use native coverage by default. The native coverage speeds up the time for running tests, it may not necessarily speed up the time for compiling nor building the reports.
bjorng
Do you see any
executable_lineinstructions if you disassemble the compiled module?This should be the way to do it from Elixir:
Here is an extract from a disassembly of one of my Erlang modules:
Yes,
coveruses native coverage on systems that support it.ypconstante
:beam_disasm.file(:code.which(mod))doesn’t haveexecutable_lineinstructions, is there any other configuration that I need to add to add them?bjorng
No, that’s correct. That will tell the Erlang compiler to instrument the code. However, it seems that the way the Elixir compiler invokes the Erlang compiler,
line_coverageinstrumentation will not work for Elixir code.To confirm, I changed your setup to:
That will instruct the Erlang compiler to print the name of each pass it executes.
If I then compile an Erlang module, the first few passes will be shown as follows:
The
sys_coveragepass is the pass that adds theexecutable_lineinstructions.If I compile using the Elixir compiler, the
sys_coveragepass is not run:That’s why there are no
executable_lineinstructions in the generated BEAM code.