Test only - disable test_0202_app_launch_apply_update_dirlocked.js on WinXP until I figure out what's going on with Bug 909489 - Intermittent test_0202_app_launch_apply_update_dirlocked.js | Test timed out | test failed (with xpcshell return code: 1). r=bbondy

This commit is contained in:
Robert Strong 2013-08-30 22:11:45 -07:00
Родитель 852d2cf85e
Коммит fee164f1c1
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -104,6 +104,17 @@ function run_test() {
return;
}
if (IS_WIN) {
var version = AUS_Cc["@mozilla.org/system-info;1"]
.getService(AUS_Ci.nsIPropertyBag2)
.getProperty("version");
var isVistaOrHigher = (parseFloat(version) >= 6.0);
if (!isVistaOrHigher) {
logTestInfo("Disabled on Windows XP due to bug 909489");
return;
}
}
do_test_pending();
do_register_cleanup(end_test);