Skip to content

Commit a9c4e4f

Browse files
Added regression tests
1 parent 76318ce commit a9c4e4f

File tree

7 files changed

+39
-0
lines changed

7 files changed

+39
-0
lines changed
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class Test {
2+
public static void main(int x) {
3+
assert(x == 0);
4+
}
5+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CORE
2+
Test.class
3+
--trace --json-ui --trace-json-extended
4+
^EXIT=10$
5+
^SIGNAL=0$
6+
rawLhs
7+
--
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CORE
2+
Test.class
3+
--trace --json-ui
4+
^EXIT=10$
5+
^SIGNAL=0$
6+
--
7+
rawLhs
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CORE
2+
test.c
3+
--trace --json-ui --trace-json-extended
4+
^EXIT=10$
5+
^SIGNAL=0$
6+
rawLhs
7+
--
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CORE
2+
test.c
3+
--trace --json-ui
4+
^EXIT=10$
5+
^SIGNAL=0$
6+
--
7+
rawLhs
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <assert.h>
2+
3+
int main(int argc, char *argv[])
4+
{
5+
assert(argc == 0);
6+
}

0 commit comments

Comments
 (0)