Skip to content

Commit

Permalink
GP-0: disabling all Frida tests
Browse files Browse the repository at this point in the history
  • Loading branch information
d-millar authored and ryanmkurtz committed Jun 8, 2022
1 parent 35d84d5 commit bb5cab8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import java.util.Set;
import java.util.stream.Collectors;

import org.junit.Ignore;
import org.junit.Test;

import generic.Unique;
Expand All @@ -44,6 +45,8 @@
*/
public abstract class AbstractModelForFridaActivationTest extends AbstractDebuggerModelActivationTest {

@Override
@Ignore
@Test
public void testDefaultFocusIsAsExpected() throws Throwable {
List<String> expectedDefaultFocus = getExpectedDefaultActivePath();
Expand All @@ -62,6 +65,8 @@ public void testDefaultFocusIsAsExpected() throws Throwable {
}
}

@Override
@Ignore
@Test
public void testActivateEachOnce() throws Throwable {
m.build();
Expand All @@ -78,6 +83,8 @@ public void testActivateEachOnce() throws Throwable {

}

@Override
@Ignore
@Test
public void testActivateEachTwice() throws Throwable {
m.build();
Expand All @@ -98,6 +105,8 @@ public void testActivateEachTwice() throws Throwable {
}
}

@Override
@Ignore
@Test
public void testActivateEachViaInterpreter() throws Throwable {
assumeTrue(m.hasInterpreter());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public void assertEnvironment(TargetEnvironment environment) {
}

@Override
@Ignore
@After
public void tearDownDebuggerModelTest() throws Throwable {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ protected FridaLinuxSpecimen getSpecimen() {

@Override
//@Ignore // Fails for distributed version
@Ignore
@Test
public void testScenario() throws Throwable {
DebuggerTestSpecimen specimen = getSpecimen();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ protected TargetObject maybeSubstituteThread(TargetObject target) throws Throwab


@Override
@Ignore
@Test
public void testRegistersHaveExpectedSizes() throws Throwable {
m.build();
Expand All @@ -94,6 +95,7 @@ public void testRegistersHaveExpectedSizes() throws Throwable {
}

@Override
@Ignore
@Test
public void testRegisterBankIsWhereExpected() throws Throwable {
m.build();
Expand All @@ -111,6 +113,7 @@ public void testRegisterBankIsWhereExpected() throws Throwable {
}

@Override
@Ignore
@Test
public void testReadRegisters() throws Throwable {
m.build();
Expand Down

0 comments on commit bb5cab8

Please sign in to comment.