Skip to content

Commit

Permalink
[x] Ignore custom code tests for not java targets
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Kochurkin <kvanttt@gmail.com>
  • Loading branch information
KvanTTT committed Jul 5, 2022
1 parent 9f14502 commit 841bb57
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ unicodeBMPIntegerListToCharArray();
unicodeSMPIntegerListToCharArray();

[skip]
CSharp Java Cpp Dart Go JavaScript Php Python2 Python3 Swift
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@ assert Token.EOF == tokenStream.get(2).getType();
[output]
[@0,0:0='A',<1>,1:0]
[@1,1:0='<EOF>',<-1>,1:1]

[skip]
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ outStream.print(new Calculator().visit(tree));
6

[skip]
CSharp Java Cpp Dart Go JavaScript Php Python2 Python3 Swift
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ outStream.print(new VisitorBasicStringBaseVisitor().visit(tree));

[output]
Error encountered: [@-1,-1:-1='<missing 'A'>',<1>,1:0]

[skip]
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ outStream.print(new VisitorBasicStringBaseVisitor().visit(tree));
[output]
"""[@0,0:0='A',<1>,1:0]
"""

[skip]
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ outStream.print(new VisitorBasicStringBaseVisitor().visit(tree));

[output]
default result

[skip]
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ TEST_platformStdoutWrite(VisitorBasicStringBaseVisitor().visit(tree));
[@1,1:0='<EOF>',<-1>,1:1]

[skip]
CSharp Java Cpp Dart Go JavaScript Php Python2 Python3 Swift
CSharp Cpp Dart Go JavaScript PHP Python2 Python3 Swift
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ else if ( value.indexOf('\n')>=0 ) {
}
continue;
case "skip":
skipTargets = value.split("\n");
skipTargets = value.split("\\s");
continue;
case "codeDeclaration":
isCodeDeclaration = true;
Expand Down

0 comments on commit 841bb57

Please sign in to comment.