summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorbradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-14 01:01:00 +0000
committerbradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-14 01:01:00 +0000
commiteb37856145b925a124bed63a7f74665b646326d7 (patch)
tree4c1519287fab92a98918745a2fafbed0255f0a76 /chrome/test
parent8bd4fd9221a50704dc0ec36add1f728c6bf04e6f (diff)
downloadchromium_src-eb37856145b925a124bed63a7f74665b646326d7.zip
chromium_src-eb37856145b925a124bed63a7f74665b646326d7.tar.gz
chromium_src-eb37856145b925a124bed63a7f74665b646326d7.tar.bz2
Enable testSUIDSandboxEnabled
BUG=126163 TEST=this is a test Review URL: https://chromiumcodereview.appspot.com/10548030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/data/webui/suidsandbox_browsertest.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/test/data/webui/suidsandbox_browsertest.js b/chrome/test/data/webui/suidsandbox_browsertest.js
index 1469cf8..2f0ab1e 100644
--- a/chrome/test/data/webui/suidsandbox_browsertest.js
+++ b/chrome/test/data/webui/suidsandbox_browsertest.js
@@ -21,7 +21,7 @@ SUIDSandboxUITest.prototype = {
// This test is for Linux only.
GEN('#if defined(OS_LINUX)');
GEN('#define MAYBE_testSUIDSandboxEnabled \\');
-GEN(' FLAKY_testSUIDSandboxEnabled');
+GEN(' testSUIDSandboxEnabled');
GEN('#else');
GEN('#define MAYBE_testSUIDSandboxEnabled \\');
GEN(' DISABLED_testSUIDSandboxEnabled');
@@ -40,7 +40,7 @@ TEST_F('SUIDSandboxUITest', 'MAYBE_testSUIDSandboxEnabled', function() {
var suidyes = document.body.innerText.match(suidyesstring);
var suidno = document.body.innerText.match(suidnostring);
- expectEquals(null, suidyes);
- expectFalse(suidno == null);
- expectEquals(suidnostring, suidno[0]);
+ expectEquals(null, suidno);
+ expectFalse(suidyes == null);
+ expectEquals(suidyesstring, suidyes[0]);
});