Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | * http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | const modules = [ |
michael@0 | 5 | "async.js", |
michael@0 | 6 | "bagheeraclient.js", |
michael@0 | 7 | "rest.js", |
michael@0 | 8 | "storageservice.js", |
michael@0 | 9 | "stringbundle.js", |
michael@0 | 10 | "tokenserverclient.js", |
michael@0 | 11 | "utils.js", |
michael@0 | 12 | ]; |
michael@0 | 13 | |
michael@0 | 14 | const test_modules = [ |
michael@0 | 15 | "bagheeraserver.js", |
michael@0 | 16 | "logging.js", |
michael@0 | 17 | "storageserver.js", |
michael@0 | 18 | ]; |
michael@0 | 19 | |
michael@0 | 20 | function run_test() { |
michael@0 | 21 | for each (let m in modules) { |
michael@0 | 22 | let resource = "resource://services-common/" + m; |
michael@0 | 23 | Components.utils.import(resource, {}); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | for each (let m in test_modules) { |
michael@0 | 27 | let resource = "resource://testing-common/services-common/" + m; |
michael@0 | 28 | Components.utils.import(resource, {}); |
michael@0 | 29 | } |
michael@0 | 30 | } |