blob: 5e5d329ac7d92ed5a4ce94b8e471653fffdd1a28 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
== C tests ==
To run all C tests (assuming the current directory is $top_srcdir):
make -C tests check-TESTS
To run tests under Valgrind:
make -C tests check-valgrind
== Twisted tests ==
To run tests using the system avahi, configure with --enable-avahi-tests
To run Twisted tests:
make -C tests/twisted check-twisted
To run an individual Twisted test:
make -C tests/twisted check-twisted TWISTED_TESTS=avahi/test-aliases.py
or:
cd tests/twisted
sh tools/with-session-bus.sh --config-file=tools/tmp-session-bus.conf \
-- python avahi/test-aliases.py
To run with debug information:
make -C tests/twisted check-twisted TWISTED_TESTS=avahi/test-aliases.py \
CHECK_TWISTED_VERBOSE=1
or:
cd tests/twisted
sh tools/with-session-bus.sh --config-file=tools/tmp-session-bus.conf \
-- python avahi/test-aliases.py -v
To debug an individual test you can set one of the following env variable:
* SALUT_TEST_VALGRIND : to run Salut inside valgrind. The report is
added to tools/gabble-testing.log.
export SALUT_TEST_VALGRIND=1
* SALUT_TEST_REFDBG : to run Salut inside refdbg. The report is written
to tools/refdbg.log. You can change SALUT_WRAPPER to use an alternative
refdbg and change REFDBG_OPTIONS to set your own parameters. Example:
export SALUT_TEST_REFDBG=1
export SALUT_WRAPPER="/path/to/refdbg"
export REFDBG_OPTIONS="btnum=16"
* SALUT_WRAPPER="nemiver" : to run Salut inside the graphical debugger
nemiver. You'll be able to set up breakpoints; then hit the "continue"
button to launch Salut.
|