-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtestSelfCoverage.hxml
36 lines (30 loc) · 1021 Bytes
/
testSelfCoverage.hxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
-cp src
-cp srcDemo
-cp tests
-lib utest
-lib safety
--macro nullSafety("demo", StrictThreaded)
--macro nullSafety("instrument", StrictThreaded)
--macro instrument.Instrumentation.profiling(["demo"], ["srcDemo"], [])
--macro instrument.Instrumentation.coverage(["demo", "instrument"], ["src", "srcDemo"], ["demo"])
-D profiler-console-detail-reporter
-D profiler-console-missing-reporter
-D profiler-console-summary-reporter
-D profiler-console-hierarchy-reporter
-D profiler-csv-reporter=profiler/summary.csv
-D profiler-d3-reporter=profiler/flame.json
-D profiler-cpuprofile-reporter=profiler/Profile.cpuprofile
-D instrument-profiler
-D coverage-console-summary-reporter
-D coverage-console-file-summary-reporter
-D coverage-console-package-summary-reporter
-D coverage-console-missing-reporter
-D coverage-lcov-reporter
-D coverage-codecov-reporter
-D coverage-jacocoxml-reporter
-D coverage-emma-reporter
# -D debug_instrumentation
-D instrument-coverage
# -D dump=pretty
--run TestSelfMain
-main TestSelfMain