aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2020-06-27 19:37:53 -0700
committerDan Willemsen <dwillemsen@google.com>2020-06-29 15:02:56 -0700
commit17da7996059f08407cc206e703ec88d4facf0dc8 (patch)
treee18ba26286bf62be039812a2aac915ff2c062d62 /go.mod
parent10cc982b563c19890872b73e6d8fb44aeda646ae (diff)
downloadkati-17da7996059f08407cc206e703ec88d4facf0dc8.tar.gz
Switch to a golang-based test runner
This adds a few features: * Parallel execution (and all other golang test runner features) * Colored diffs of output * Make and kati run in subdirs, all output is preserved * Full logs saved of raw and normalized output per-testcase * TODO(c/<testcase>) support to mark individual testcases as expected failures, instead of the full test. Removed support for the [go]kati serialization tests Change-Id: Id6be80a3168ccff3fa3a970fe089986f1aa066dd
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod5
1 files changed, 4 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 67c9b11..3ce630e 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,7 @@ module github.com/google/kati
go 1.14
-require github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
+require (
+ github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
+ github.com/sergi/go-diff v1.1.0
+)