Bug 274136: add setExitCode global function for controlling xpcshell's exit

status.  Somewhere out there, the god of automated tests cracked a smile.
r=dmose
This commit is contained in:
shaver%mozilla.org 2004-12-11 03:32:10 +00:00
parent ca6d8b72e2
commit bd3f0080d6

View File

@ -352,6 +352,17 @@ Clear(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
return JS_TRUE;
}
JS_STATIC_DLL_CALLBACK(JSBool)
SetExitCode(JSContext *cx, JSObject *obj, uintN argc, jsval *argv,
jsval *rval)
{
if (argc == 0) {
gExitCode = 0;
return PR_TRUE;
}
return JS_ValueToECMAInt32(cx, argv[0], &gExitCode);
}
static JSFunctionSpec glob_functions[] = {
{"print", Print, 0},
{"load", Load, 1},
@ -362,6 +373,7 @@ static JSFunctionSpec glob_functions[] = {
{"dump", Dump, 1},
{"gc", GC, 0},
{"clear", Clear, 1},
{"setExitCode", SetExitCode, 1},
{0}
};