aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_binary/out_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/go_binary/out_test.go')
-rw-r--r--tests/core/go_binary/out_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/core/go_binary/out_test.go b/tests/core/go_binary/out_test.go
new file mode 100644
index 00000000..7c6ba7f3
--- /dev/null
+++ b/tests/core/go_binary/out_test.go
@@ -0,0 +1,13 @@
+package main
+
+import (
+ "os"
+ "testing"
+)
+
+func TestCustomBinaryName(t *testing.T) {
+ _, err := os.Stat("alt_bin")
+ if err != nil {
+ t.Error(err)
+ }
+}