Commit a76caef1 authored by Dylan Trotter's avatar Dylan Trotter Committed by GitHub

Comment out TestRawInput

This test is causing too many Travis failures. Will re-enable when https://github.com/google/grumpy/issues/282 is addressed.
parent 470f74cb
...@@ -471,7 +471,8 @@ func TestBuiltinSetAttr(t *testing.T) { ...@@ -471,7 +471,8 @@ func TestBuiltinSetAttr(t *testing.T) {
} }
} }
func TestRawInput(t *testing.T) { // TODO(corona10): Re-enable once #282 is addressed.
/*func TestRawInput(t *testing.T) {
fun := wrapFuncForTest(func(f *Frame, s string, args ...*Object) (*Object, *BaseException) { fun := wrapFuncForTest(func(f *Frame, s string, args ...*Object) (*Object, *BaseException) {
// Create a fake Stdin for input test. // Create a fake Stdin for input test.
stdinFile, w, err := os.Pipe() stdinFile, w, err := os.Pipe()
...@@ -523,7 +524,7 @@ func TestRawInput(t *testing.T) { ...@@ -523,7 +524,7 @@ func TestRawInput(t *testing.T) {
} }
} }
} }*/
func newTestIndexObject(index int) *Object { func newTestIndexObject(index int) *Object {
indexType := newTestClass("Index", []*Type{ObjectType}, newStringDict(map[string]*Object{ indexType := newTestClass("Index", []*Type{ObjectType}, newStringDict(map[string]*Object{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment