Skip to content

Commit 314107b

Browse files
authored
src: check remained lines after all test cases (#132)
1 parent 7750e72 commit 314107b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/main.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,12 @@ func (t *tester) Run() error {
528528
}
529529
}
530530

531+
// check do we have remained lines in result file
532+
buf := make([]byte, 32)
533+
if n, _ := t.resultFD.ReadAt(buf, int64(t.buf.Len())); n != 0 {
534+
return errors.Trace(errors.Errorf("There is extra data at the end of the result file: %s", buf))
535+
}
536+
531537
fmt.Printf("%s: ok! %d test cases passed, take time %v s\n", t.testFileName(), testCnt, time.Since(startTime).Seconds())
532538

533539
if xmlPath != "" {
@@ -784,13 +790,10 @@ func (t *tester) execute(query query) error {
784790
if err != nil {
785791
return errors.Trace(errors.Errorf("run \"%v\" at line %d err %v", query.Query, query.Line, err))
786792
}
793+
787794
// clear expected errors after we execute the first query
788795
t.expectedErrs = nil
789796

790-
if err != nil {
791-
return errors.Trace(errors.Errorf("run \"%v\" at line %d err %v", query.Query, query.Line, err))
792-
}
793-
794797
if !record {
795798
// check test result now
796799
gotBuf := t.buf.Bytes()[offset:]

0 commit comments

Comments
 (0)