Overview
| Comment: | Updated to build coverage across all built modules |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d1ae68c7a19cf46bf30b3e8e5519e58e |
| User & Date: | rkeene on 2019-09-17 20:26:06.961 |
| Other Links: | manifest | tags |
Context
|
2019-09-17
| ||
| 20:26 | Set dev/rdev to something unique to this filesystem check-in: f7a81bb10b user: rkeene tags: trunk | |
| 20:26 | Updated to build coverage across all built modules check-in: d1ae68c7a1 user: rkeene tags: trunk | |
| 19:58 | Renamed the standalone mode to be standalone check-in: d09edad10f user: rkeene tags: trunk | |
Changes
Modified Makefile
from [83eb9014ae]
to [fcfa279168].
| ︙ | ︙ | |||
55 56 57 58 59 60 61 |
echo "[$${XVFS_TEST_LOAD_COMMANDS}] $(GDB) $(TCLSH) __test__.tcl $(TCL_TEST_ARGS)"; \
$(GDB) $(TCLSH) __test__.tcl $(TCL_TEST_ARGS) || exit 1; \
done
rm -f __test__.tcl
coverage:
$(MAKE) clean
| | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
echo "[$${XVFS_TEST_LOAD_COMMANDS}] $(GDB) $(TCLSH) __test__.tcl $(TCL_TEST_ARGS)"; \
$(GDB) $(TCLSH) __test__.tcl $(TCL_TEST_ARGS) || exit 1; \
done
rm -f __test__.tcl
coverage:
$(MAKE) clean
$(MAKE) XVFS_ADD_CFLAGS=-coverage XVFS_ADD_LDFLAGS=-coverage
$(MAKE) test XVFS_TEST_EXIT_ON_FAILURE=0
rm -f xvfs-test-coverage.info
lcov --capture --directory . --output-file xvfs-test-coverage.info
rm -rf xvfs-test-coverage
mkdir xvfs-test-coverage
genhtml xvfs-test-coverage.info --output-directory xvfs-test-coverage
rm -f xvfs-test-coverage.info
|
| ︙ | ︙ |