ipc/testshell/tests/test_ipcshell.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 function callback(result) {
michael@0 2 do_check_eq(result, Ci.nsIXULRuntime.PROCESS_TYPE_CONTENT);
michael@0 3 do_test_finished();
michael@0 4 }
michael@0 5
michael@0 6 function run_test() {
michael@0 7 do_test_pending();
michael@0 8
michael@0 9 do_check_eq(runtime.processType, Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT);
michael@0 10
michael@0 11 sendCommand("load('test_ipcshell_child.js');");
michael@0 12
michael@0 13 sendCommand("runtime.processType;", callback);
michael@0 14
michael@0 15 [ [ "C", "D" ], [ "D", "C" ], [ "\u010C", "D" ], [ "D", "\u010C" ] ].forEach(
michael@0 16 function (pair) {
michael@0 17 do_test_pending();
michael@0 18 var cmp = pair[0].localeCompare(pair[1]);
michael@0 19 sendCommand(
michael@0 20 "'"+ pair[0] +"'.localeCompare('"+ pair[1] +"');",
michael@0 21 function (result) {
michael@0 22 do_check_eq(cmp, result);
michael@0 23 do_test_finished();
michael@0 24 });
michael@0 25 })
michael@0 26 }
michael@0 27 load('test_ipcshell_child.js');
michael@0 28

mercurial