Commit 5f5562ea authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Update expected test results.

Expected removal of repeated statements that were incorrectly included in the slice by SlicePruneVisitor without being marked as such by the algorithm.
parent 3143e585
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -31,8 +31,4 @@ class GrandesNumeros extends Numeros {
    GrandesNumeros(double x) {
        haceFalta = 0;
    }

    int random() {
        return haceFalta;
    }
}
+0 −1
Original line number Diff line number Diff line
class A {

    A(int newx) {
        xA = newx;
    }

    int getx() {
+0 −1
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@ public class BasicSwitchDefault {
                break;
            default:
                y = -1;
                break;
        }
        System.out.println(y);
    }
+0 −1
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@ public class Bucles_3 {
    public static void main(String[] args) {
        int x;
        x = 1;
        x = 1;
        do {
            x++;
        } while (x <= 10);
+0 −1
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@ public class Bucles_5 {
    public static void main(String[] args) {
        int x = 0;
        x = 1;
        x = 1;
        do {
            x++;
        } while (x <= 10);
Loading