diff options
author | bradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 17:41:18 +0000 |
---|---|---|
committer | bradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 17:41:18 +0000 |
commit | 3618be828ea5ceebc4644497325f245dd34de83a (patch) | |
tree | 02a6abcb797476196e2cf1fa9aeda5686a0d425a /ppapi/tests | |
parent | bbfacc89f9f8eb332c9193d272249592d226ee8e (diff) | |
download | chromium_src-3618be828ea5ceebc4644497325f245dd34de83a.zip chromium_src-3618be828ea5ceebc4644497325f245dd34de83a.tar.gz chromium_src-3618be828ea5ceebc4644497325f245dd34de83a.tar.bz2 |
Enable PPAPINaCl GLIBC browser_tests.
NOTE: NaCl CL to update untrusted.gypi must go in first.
BUG=127699
TEST=this is a test
Review URL: https://chromiumcodereview.appspot.com/10409032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests')
-rw-r--r-- | ppapi/tests/test_case.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ppapi/tests/test_case.html b/ppapi/tests/test_case.html index d395f13..a9d0879 100644 --- a/ppapi/tests/test_case.html +++ b/ppapi/tests/test_case.html @@ -197,9 +197,14 @@ onload = function() { var mode = ExtractSearchParameter("mode"); document.title = 'Test ' + testcase; var obj; - if (mode == "nacl") { + if (mode == "nacl_newlib") { obj = document.createElement("EMBED"); - obj.setAttribute("src", "test_case.nmf"); + obj.setAttribute("src", "ppapi_nacl_tests_newlib.nmf"); + obj.setAttribute("type", "application/x-nacl"); + obj.setAttribute("mode", mode); + } else if (mode == "nacl_glibc") { + obj = document.createElement("EMBED"); + obj.setAttribute("src", "ppapi_nacl_tests_glibc.nmf"); obj.setAttribute("type", "application/x-nacl"); obj.setAttribute("mode", mode); } else { |