Skip to content
Snippets Groups Projects
Commit 4a823919 authored by Wilke Pierre's avatar Wilke Pierre
Browse files

tests type

parent 168a8ffd
No related branches found
No related tags found
No related merge requests found
Showing
with 476 additions and 0 deletions
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(20)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(a)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_GT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IF
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_LT
SYM_INTEGER(5)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_INTEGER(5)
SYM_SEMICOLON
SYM_RBRACE
SYM_ELSE
SYM_LBRACE
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_INTEGER(6)
SYM_SEMICOLON
SYM_RBRACE
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_IDENTIFIER(i)
SYM_MINUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(i)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(){
int i = 20;
int c = 8;
int a = 5;
int b = 0;
while(i > 0){
if(i < 5){
a = 4 + c;
}
b = b + a;
i = i - 1;
}
return b;
}
{"output": "", "error": null, "retval": 128}
\ No newline at end of file
{"output": "", "error": null, "retval": 128}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(20)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(c)
SYM_ASSIGN
SYM_INTEGER(8)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_INTEGER(5)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(b)
SYM_ASSIGN
SYM_INTEGER(0)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_GT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IF
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_LT
SYM_INTEGER(5)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_INTEGER(4)
SYM_PLUS
SYM_IDENTIFIER(c)
SYM_SEMICOLON
SYM_RBRACE
SYM_IDENTIFIER(b)
SYM_ASSIGN
SYM_IDENTIFIER(b)
SYM_PLUS
SYM_IDENTIFIER(a)
SYM_SEMICOLON
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_IDENTIFIER(i)
SYM_MINUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(b)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(){
int i = 10;
int a = 2;
int res = 0;
while(i > 0){
int x = a + a;
int y = 1 + x;
if(i > 4){
res = res + x;
} else {
if (i < 2){
res = res - y;
} else {
res = res + x - y;
}
}
i = i - 1;
}
return res;
}
{"output": "", "error": null, "retval": 16}
\ No newline at end of file
{"output": "", "error": null, "retval": 16}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(10)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(a)
SYM_ASSIGN
SYM_INTEGER(2)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_INTEGER(0)
SYM_SEMICOLON
SYM_WHILE
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_GT
SYM_INTEGER(0)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(x)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_PLUS
SYM_IDENTIFIER(a)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(y)
SYM_ASSIGN
SYM_INTEGER(1)
SYM_PLUS
SYM_IDENTIFIER(x)
SYM_SEMICOLON
SYM_IF
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_GT
SYM_INTEGER(4)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_IDENTIFIER(res)
SYM_PLUS
SYM_IDENTIFIER(x)
SYM_SEMICOLON
SYM_RBRACE
SYM_ELSE
SYM_LBRACE
SYM_IF
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_LT
SYM_INTEGER(2)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_IDENTIFIER(res)
SYM_MINUS
SYM_IDENTIFIER(y)
SYM_SEMICOLON
SYM_RBRACE
SYM_ELSE
SYM_LBRACE
SYM_IDENTIFIER(res)
SYM_ASSIGN
SYM_IDENTIFIER(res)
SYM_PLUS
SYM_IDENTIFIER(x)
SYM_MINUS
SYM_IDENTIFIER(y)
SYM_SEMICOLON
SYM_RBRACE
SYM_RBRACE
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_IDENTIFIER(i)
SYM_MINUS
SYM_INTEGER(1)
SYM_SEMICOLON
SYM_RBRACE
SYM_RETURN
SYM_IDENTIFIER(res)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(int a, int b){
int x = a;
int y = b;
int z = a * b;
int t = a + b + z;
int u = z - 3;
int v = x - u;
int w = a * x + z - t;
int i = 35;
int j = i * w;
int k = 8 * t + z / i;
int l = 19 * k;
int m = 12;
int n = 12;
int o = 12;
int p = 12;
int q = 12;
int r = 12;
int s = 12;
return x + y + z + t + u + v + w + i + j + k + l + m + n + o + p + q + r + s;
}
{"output": "", "error": null, "retval": 37761}
\ No newline at end of file
{"output": "", "error": null, "retval": 858}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_INT
SYM_IDENTIFIER(a)
SYM_COMMA
SYM_INT
SYM_IDENTIFIER(b)
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(x)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(y)
SYM_ASSIGN
SYM_IDENTIFIER(b)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(z)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_ASTERISK
SYM_IDENTIFIER(b)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(t)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_PLUS
SYM_IDENTIFIER(b)
SYM_PLUS
SYM_IDENTIFIER(z)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(u)
SYM_ASSIGN
SYM_IDENTIFIER(z)
SYM_MINUS
SYM_INTEGER(3)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(v)
SYM_ASSIGN
SYM_IDENTIFIER(x)
SYM_MINUS
SYM_IDENTIFIER(u)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(w)
SYM_ASSIGN
SYM_IDENTIFIER(a)
SYM_ASTERISK
SYM_IDENTIFIER(x)
SYM_PLUS
SYM_IDENTIFIER(z)
SYM_MINUS
SYM_IDENTIFIER(t)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(35)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(j)
SYM_ASSIGN
SYM_IDENTIFIER(i)
SYM_ASTERISK
SYM_IDENTIFIER(w)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(k)
SYM_ASSIGN
SYM_INTEGER(8)
SYM_ASTERISK
SYM_IDENTIFIER(t)
SYM_PLUS
SYM_IDENTIFIER(z)
SYM_DIV
SYM_IDENTIFIER(i)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(l)
SYM_ASSIGN
SYM_INTEGER(19)
SYM_ASTERISK
SYM_IDENTIFIER(k)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(m)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(n)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(o)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(p)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(q)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(r)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(s)
SYM_ASSIGN
SYM_INTEGER(12)
SYM_SEMICOLON
SYM_RETURN
SYM_IDENTIFIER(x)
SYM_PLUS
SYM_IDENTIFIER(y)
SYM_PLUS
SYM_IDENTIFIER(z)
SYM_PLUS
SYM_IDENTIFIER(t)
SYM_PLUS
SYM_IDENTIFIER(u)
SYM_PLUS
SYM_IDENTIFIER(v)
SYM_PLUS
SYM_IDENTIFIER(w)
SYM_PLUS
SYM_IDENTIFIER(i)
SYM_PLUS
SYM_IDENTIFIER(j)
SYM_PLUS
SYM_IDENTIFIER(k)
SYM_PLUS
SYM_IDENTIFIER(l)
SYM_PLUS
SYM_IDENTIFIER(m)
SYM_PLUS
SYM_IDENTIFIER(n)
SYM_PLUS
SYM_IDENTIFIER(o)
SYM_PLUS
SYM_IDENTIFIER(p)
SYM_PLUS
SYM_IDENTIFIER(q)
SYM_PLUS
SYM_IDENTIFIER(r)
SYM_PLUS
SYM_IDENTIFIER(s)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(){
int i = 823333;
int j = 7392;
return (i*j/7) % 10;
}
{"output": "", "error": null, "retval": 8}
\ No newline at end of file
{"output": "", "error": null, "retval": 8}
\ No newline at end of file
SYM_INT
SYM_IDENTIFIER(main)
SYM_LPARENTHESIS
SYM_RPARENTHESIS
SYM_LBRACE
SYM_INT
SYM_IDENTIFIER(i)
SYM_ASSIGN
SYM_INTEGER(823333)
SYM_SEMICOLON
SYM_INT
SYM_IDENTIFIER(j)
SYM_ASSIGN
SYM_INTEGER(7392)
SYM_SEMICOLON
SYM_RETURN
SYM_LPARENTHESIS
SYM_IDENTIFIER(i)
SYM_ASTERISK
SYM_IDENTIFIER(j)
SYM_DIV
SYM_INTEGER(7)
SYM_RPARENTHESIS
SYM_MOD
SYM_INTEGER(10)
SYM_SEMICOLON
SYM_RBRACE
SYM_EOF
int main(){
return 1 * (2 * (3 * 4 * (5 * 6) * 7));
}
{"output": "", "error": null, "retval": 5040}
\ No newline at end of file
{"output": "", "error": null, "retval": 5040}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment