@@ -51,7 +51,7 @@ options with which the server is started, restart the server during
51
51
execution, etc.)
52
52
53
53
You can create your own test cases. To create a test case, create a new
54
- file in the t subdirectory using a text editor. The file should have a .test
54
+ file in the main subdirectory using a text editor. The file should have a .test
55
55
extension. For example:
56
56
57
57
# xemacs t/test_case_name.test
@@ -60,7 +60,7 @@ In the file, put a set of SQL statements that create some tables,
60
60
load test data, and run some queries to manipulate it.
61
61
62
62
Your test should begin by dropping the tables you are going to create and
63
- end by dropping them again. This ensures that you can run the test over
63
+ end by dropping them again. This ensures that you can run the test over
64
64
and over again.
65
65
66
66
If you are using mysqltest commands in your test case, you should create
@@ -81,7 +81,7 @@ comments, you can create the result file in one of the following ways:
81
81
82
82
# mysqltest --record --database test --result-file=r/test_case_name.result < t/test_case_name.test
83
83
84
- When this is done, take a look at r/test_case_name.result .
84
+ When this is done, take a look at r/test_case_name.result.
85
85
If the result is incorrect, you have found a bug. In this case, you should
86
86
edit the test result to the correct results so that we can verify that
87
87
the bug is corrected in future releases.
0 commit comments