aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorLucas Teske <[email protected]>2020-05-20 13:05:25 -0300
committerAyke <[email protected]>2020-05-21 00:57:19 +0200
commit726d735ad35f1c1ea0ffc59a25a44e2d167a8ccf (patch)
treebd609c09ef2bc58f72b21ff9d2f6f2b5132edcfc /src
parentb9fd6cee6f0e427d1f2317734f49411e190cec75 (diff)
downloadtinygo-726d735ad35f1c1ea0ffc59a25a44e2d167a8ccf.tar.gz
tinygo-726d735ad35f1c1ea0ffc59a25a44e2d167a8ccf.zip
cgo: Add LDFlags support
Diffstat (limited to 'src')
-rw-r--r--src/testing/testing.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testing/testing.go b/src/testing/testing.go
index f476514f6..ca353c608 100644
--- a/src/testing/testing.go
+++ b/src/testing/testing.go
@@ -20,10 +20,10 @@ import (
type common struct {
output io.Writer
- failed bool // Test or benchmark has failed.
- skipped bool // Test of benchmark has been skipped.
- finished bool // Test function has completed.
- name string // Name of test or benchmark.
+ failed bool // Test or benchmark has failed.
+ skipped bool // Test of benchmark has been skipped.
+ finished bool // Test function has completed.
+ name string // Name of test or benchmark.
}
// TB is the interface common to T and B.