@@ -42,11 +42,14 @@ var testCases = []testCase{
42
42
filename : "hello-py3.py" ,
43
43
lang : "python" ,
44
44
},
45
- {
46
- path : filepath .FromSlash ("testdata/hello.cpp" ),
47
- filename : "hello.cpp" ,
48
- lang : "c++" ,
49
- },
45
+ // Disabled cpp parsing, see https://github.com/bblfsh/cpp-driver/issues/31
46
+ /*
47
+ {
48
+ path: filepath.FromSlash("testdata/hello.cpp"),
49
+ filename: "hello.cpp",
50
+ lang: "c++",
51
+ },
52
+ */
50
53
{
51
54
path : filepath .FromSlash ("testdata/hello.java" ),
52
55
filename : "hello.java" ,
@@ -72,11 +75,14 @@ var testCases = []testCase{
72
75
filename : "hello.go" ,
73
76
lang : "go" ,
74
77
},
75
- {
76
- path : filepath .FromSlash ("testdata/hello.cs" ),
77
- filename : "hello.cs" ,
78
- lang : "c#" ,
79
- },
78
+ // Disabled csharp parsing, see https://github.com/bblfsh/bblfshd/issues/259
79
+ /*
80
+ {
81
+ path: filepath.FromSlash("testdata/hello.cs"),
82
+ filename: "hello.cs",
83
+ lang: "c#",
84
+ },
85
+ */
80
86
{
81
87
path : filepath .FromSlash ("testdata/hello.php" ),
82
88
filename : "hello.php" ,
@@ -177,7 +183,7 @@ func (s *ParseTestSuite) TestUast() {
177
183
// ----------------
178
184
// TODO Temporary test skip, it fails for cpp, bash, and csharp.
179
185
// See https://github.com/src-d/engine/issues/297
180
- if tc .lang == "c++" || tc . lang == " shell" || tc . lang == "c# " {
186
+ if tc .lang == "shell" {
181
187
// This Error assertion will fail when #297 is fixed, to remind us to remove this skip
182
188
require .Error (r .Error )
183
189
t .Skip ("TEST FAILURE IS A KNOWN ISSUE (#297): " + r .Stdout ())
0 commit comments