Backed out changeset 6fc8606d27d4 (bug 1043720) for robocop failures

This commit is contained in:
Wes Kocher 2014-07-25 11:31:53 -07:00
Родитель 22b20a53a3
Коммит 84820a3293
1 изменённых файлов: 2 добавлений и 14 удалений

Просмотреть файл

@ -6,13 +6,13 @@ package org.mozilla.gecko.tests;
import java.util.Map;
import org.mozilla.gecko.AppConstants;
import org.mozilla.gecko.Assert;
import org.mozilla.gecko.FennecInstrumentationTestRunner;
import org.mozilla.gecko.FennecMochitestAssert;
import org.mozilla.gecko.FennecNativeDriver;
import org.mozilla.gecko.FennecTalosAssert;
import org.mozilla.gecko.RobocopUtils;
import org.mozilla.gecko.AppConstants;
import android.app.Activity;
import android.test.ActivityInstrumentationTestCase2;
@ -106,17 +106,5 @@ public abstract class BaseRobocopTest extends ActivityInstrumentationTestCase2<A
}
mAsserter.setLogFile(mLogFile);
mAsserter.setTestName(this.getClass().getName());
// If the screen is dimmed, the first touch event may not be fired depending on the device.
// As a workaround, force the screen to stay on throughout the test. Note that the
// WatcherService already does this on production machines, so this fix is aimed toward
// locally running tests.
final Activity activity = getActivity();
RobocopUtils.runOnUiThreadSync(activity, new Runnable() {
@Override
public void run() {
activity.getWindow().getDecorView().setKeepScreenOn(true);
}
});
}
}