Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public long test1(long value) {
}

@Run(test = "test1")
public void run1(RunInfo info) {
public void run1() {
long res = test1(field_L);
Asserts.assertEQ(res, gold_L);
}
Expand All @@ -88,7 +88,7 @@ public int test2(int value) {
}

@Run(test = "test2")
public void run2(RunInfo info) {
public void run2() {
int res = test2(field_I);
Asserts.assertEQ(res, gold_I);
}
Expand All @@ -105,7 +105,7 @@ public int test3(int value) {
}

@Run(test = "test3")
public void run3(RunInfo info) {
public void run3() {
int res = 0;
for (int i = 1; i < 100; i++) {
res |= test3(i);
Expand All @@ -125,7 +125,7 @@ public long test4(long value) {
}

@Run(test = "test4")
public void run4(RunInfo info) {
public void run4() {
long res = 0;
for (long i = 1; i < 100; i++) {
res |= test4(i);
Expand All @@ -143,7 +143,7 @@ public long test5(long value) {
}

@Run(test = "test5")
public void run5(RunInfo info) {
public void run5() {
long res = 0;
for (int i = -100; i < 100; i++) {
res |= test5((long)i);
Expand All @@ -161,7 +161,7 @@ public long test6(long value) {
}

@Run(test = "test6")
public void run6(RunInfo info) {
public void run6() {
long res = 0;
for (int i = -100; i < 100; i++) {
res |= test6((long)i);
Expand All @@ -180,7 +180,7 @@ public long test7(long value) {
}

@Run(test = "test7")
public void run7(RunInfo info) {
public void run7() {
long res = Long.MIN_VALUE;
for (int i = -100; i < 100; i++) {
res = Long.max(test7((long)i), res);
Expand All @@ -198,7 +198,7 @@ public int test8(int value) {
}

@Run(test = "test8")
public void run8(RunInfo info) {
public void run8() {
int res = 0;
for (int i = -100; i < 100; i++) {
res |= test8(i);
Expand All @@ -216,7 +216,7 @@ public int test9(int value) {
}

@Run(test = "test9")
public void run9(RunInfo info) {
public void run9() {
int res = 0;
for (int i = -100; i < 100; i++) {
res |= test9(i);
Expand All @@ -235,7 +235,7 @@ public int test10(int value) {
}

@Run(test = "test10")
public void run10(RunInfo info) {
public void run10() {
int res = Integer.MIN_VALUE;
for (int i = -100; i < 100; i++) {
res = Integer.max(test10(i), res);
Expand All @@ -252,7 +252,7 @@ public int test11(int value) {
}

@Run(test = "test11")
public void run11(RunInfo info) {
public void run11() {
int res = 0;
for (int i = -100; i < 100; i++) {
res |= test11(i);
Expand All @@ -269,7 +269,7 @@ public long test12(long value) {
}

@Run(test = "test12")
public void run12(RunInfo info) {
public void run12() {
long res = 0;
for (int i = -100; i < 100; i++) {
res |= test12(i);
Expand All @@ -286,7 +286,7 @@ public int test13(int value) {
}

@Run(test = "test13")
public void run13(RunInfo info) {
public void run13() {
int res = 0;
for (int i = -100; i < 100; i++) {
res |= test13(i);
Expand All @@ -303,7 +303,7 @@ public long test14(long value) {
}

@Run(test = "test14")
public void run14(RunInfo info) {
public void run14() {
long res = 0;
for (int i = -100; i < 100; i++) {
res |= test14(i);
Expand All @@ -320,7 +320,7 @@ public int test15(int src, int mask) {
}

@Run (test = "test15")
public void run15(RunInfo info) {
public void run15() {
int res = test15(0, 0);
Asserts.assertEQ(0, res);
}
Expand Down Expand Up @@ -395,7 +395,7 @@ public int test16(int src, int mask) {
}

@Run (test = "test16")
public void run16(RunInfo info) {
public void run16() {
int actual = 0;
int expected = 0;

Expand Down Expand Up @@ -479,7 +479,7 @@ public int test17(int src, int mask) {
}

@Run (test = "test17")
public void run17(RunInfo info) {
public void run17() {
int actual = 0;
int expected = 0;

Expand Down Expand Up @@ -563,7 +563,7 @@ public long test18(long src, long mask) {
}

@Run (test = "test18")
public void run18(RunInfo info) {
public void run18() {
long actual = 0;
long expected = 0;

Expand Down Expand Up @@ -647,7 +647,7 @@ public long test19(long src, long mask) {
}

@Run (test = "test19")
public void run19(RunInfo info) {
public void run19() {
long actual = 0;
long expected = 0;

Expand Down