Commit 9532f6b44dccd84c74896acffa54157d8f1ead59

Stefan Sperling 2019-07-14T12:20:05

mention C tests in README for completeness

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/README b/README
index 733bcb5..dedfae2 100644
--- a/README
+++ b/README
@@ -54,6 +54,11 @@ in writing a regression test saves time wasted on back-and-forth discussion
 about how the problem can be reproduced. A regression test will need to be
 written in any case to verify a fix and prevent the problem from resurfacing.
 
+It is also possible to write test cases in C. Various examples of this
+exist in the regress/ directory. Most such tests are unit tests written
+before got's command line interface was available; it is unlikely that a
+problem found during regular usage will require a test to be written in C.
+
 Some areas of code, such as the tog UI, are not covered by automated tests.
 Please try to find a way to trigger your problem via the command line before
 reporting the problem without including a written test case. If writing an