From 36f7fe61c3697a3e99b95fe3f3c12fc16ed2d39f Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Thu, 20 Aug 2015 18:22:50 +0200 Subject: core, tests: Double SUICIDE fix --- tests/block_test_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/block_test_util.go') diff --git a/tests/block_test_util.go b/tests/block_test_util.go index 8cb7b7882..d47c2b101 100644 --- a/tests/block_test_util.go +++ b/tests/block_test_util.go @@ -150,7 +150,7 @@ func runBlockTests(bt map[string]*BlockTest, skipTests []string) error { // test the block if err := runBlockTest(test); err != nil { - return err + return fmt.Errorf("%s: %v", name, err) } glog.Infoln("Block test passed: ", name) -- cgit