]> Cypherpunks repositories - gostls13.git/commitdiff
[dev.ssa] test: ensure that all current tests run
authorTodd Neal <todd@tneal.org>
Tue, 8 Sep 2015 00:29:26 +0000 (19:29 -0500)
committerTodd Neal <todd@tneal.org>
Tue, 8 Sep 2015 09:27:31 +0000 (09:27 +0000)
Some of the test files were missing, so add them.

Change-Id: Ifac248edf33e1e4ccd82355f596d74eab4ff01a2
Reviewed-on: https://go-review.googlesource.com/14328
Run-TryBot: Todd Neal <todd@tneal.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
src/cmd/compile/internal/gc/ssa_test.go

index 071522bc2f2fd38af14d42e750c212443376074d..e4f5bcd1fdfdf74003a8050834d9aa28405587c0 100644 (file)
@@ -54,3 +54,19 @@ func TestArithmeticBoundary(t *testing.T) { runTest(t, "arithBoundary_ssa.go") }
 
 // TestArithmeticConst tests results for arithmetic operations against constants.
 func TestArithmeticConst(t *testing.T) { runTest(t, "arithConst_ssa.go") }
+
+func TestChan(t *testing.T) { runTest(t, "chan_ssa.go") }
+
+func TestCompound(t *testing.T) { runTest(t, "compound_ssa.go") }
+
+func TestCtl(t *testing.T) { runTest(t, "ctl_ssa.go") }
+
+func TestFp(t *testing.T) { runTest(t, "fp_ssa.go") }
+
+func TestLoadStore(t *testing.T) { runTest(t, "loadstore_ssa.go") }
+
+func TestMap(t *testing.T) { runTest(t, "map_ssa.go") }
+
+func TestRegalloc(t *testing.T) { runTest(t, "regalloc_ssa.go") }
+
+func TestString(t *testing.T) { runTest(t, "string_ssa.go") }