mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
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:
parent
ca6d8b72e2
commit
bd3f0080d6
@ -352,6 +352,17 @@ Clear(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|||||||
return JS_TRUE;
|
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[] = {
|
static JSFunctionSpec glob_functions[] = {
|
||||||
{"print", Print, 0},
|
{"print", Print, 0},
|
||||||
{"load", Load, 1},
|
{"load", Load, 1},
|
||||||
@ -362,6 +373,7 @@ static JSFunctionSpec glob_functions[] = {
|
|||||||
{"dump", Dump, 1},
|
{"dump", Dump, 1},
|
||||||
{"gc", GC, 0},
|
{"gc", GC, 0},
|
||||||
{"clear", Clear, 1},
|
{"clear", Clear, 1},
|
||||||
|
{"setExitCode", SetExitCode, 1},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user