From 6e1eb28ed03d610c791b06c5788579661b3a10a9 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Tue, 25 May 2021 13:24:50 +0200 Subject: [PATCH] main: rename goroutine tests While LLVM coroutines are one implementation of goroutines, it is not the only one. Therefore, rename the tests to 'goroutines' to better describe what they're for. --- main_test.go | 2 +- testdata/{coroutines.go => goroutines.go} | 0 testdata/{coroutines.txt => goroutines.txt} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename testdata/{coroutines.go => goroutines.go} (100%) rename testdata/{coroutines.txt => goroutines.txt} (100%) diff --git a/main_test.go b/main_test.go index 224a71b0..51fd21fd 100644 --- a/main_test.go +++ b/main_test.go @@ -35,9 +35,9 @@ func TestCompiler(t *testing.T) { "calls.go", "cgo/", "channel.go", - "coroutines.go", "float.go", "gc.go", + "goroutines.go", "init.go", "init_multi.go", "interface.go", diff --git a/testdata/coroutines.go b/testdata/goroutines.go similarity index 100% rename from testdata/coroutines.go rename to testdata/goroutines.go diff --git a/testdata/coroutines.txt b/testdata/goroutines.txt similarity index 100% rename from testdata/coroutines.txt rename to testdata/goroutines.txt