File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,7 @@ We are currently early in the development of this project. We began with a mirro
18
18
## Build and Install
19
19
20
20
For detailed instructions on building and installing libdispatch, see [ INSTALL.md] ( INSTALL.md )
21
+
22
+ ## Testing
23
+
24
+ For detailed instructions on testing libdispatch, see [ TESTING.md] ( TESTING.md )
Original file line number Diff line number Diff line change
1
+ ## Testing libdispatch
2
+
3
+ ### Running tests
4
+
5
+ A C-based test suite can be found in the tests subdirectory.
6
+ It uses the automake testing harness to execute the tests.
7
+
8
+ A default set of tests that are always expected to pass can
9
+ be executed by doing
10
+
11
+ ```
12
+ make check
13
+ ```
14
+
15
+ An extended test suite that includes some tests that may fail
16
+ occasionally can be enabled at configure time:
17
+
18
+ ```
19
+ ./configure --enable-extended-test-suite
20
+ make check
21
+ ```
22
+
23
+ ### Additional prerequisites
24
+
25
+ A few test cases require additional packages to be installed.
26
+ In particular, several IO tests assume /usr/bin/vi is available
27
+ as an input file and will fail if it is not present.
You can’t perform that action at this time.
0 commit comments