2009-07-09 13:58:19 -07:00
|
|
|
const modules = [
|
2009-07-01 11:51:52 -07:00
|
|
|
"constants.js",
|
|
|
|
"engines/bookmarks.js",
|
2010-03-16 16:39:08 -07:00
|
|
|
"engines/clients.js",
|
2009-07-01 11:51:52 -07:00
|
|
|
"engines/forms.js",
|
|
|
|
"engines/history.js",
|
|
|
|
"engines/passwords.js",
|
|
|
|
"engines/prefs.js",
|
|
|
|
"engines/tabs.js",
|
|
|
|
"engines.js",
|
|
|
|
"ext/Observers.js",
|
|
|
|
"ext/Preferences.js",
|
|
|
|
"identity.js",
|
|
|
|
"log4moz.js",
|
2010-08-25 15:49:45 -07:00
|
|
|
"main.js",
|
2009-07-01 11:51:52 -07:00
|
|
|
"notifications.js",
|
2011-01-18 16:23:30 -08:00
|
|
|
"record.js",
|
2009-07-01 11:51:52 -07:00
|
|
|
"resource.js",
|
|
|
|
"service.js",
|
|
|
|
"util.js",
|
2009-07-09 13:58:19 -07:00
|
|
|
];
|
2009-07-01 11:51:52 -07:00
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
for each (let m in modules) {
|
2010-06-16 14:30:08 -07:00
|
|
|
_("Attempting to load resource://services-sync/" + m);
|
|
|
|
Cu.import("resource://services-sync/" + m, {});
|
2009-07-01 11:51:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|