blob: f9d5c4e14345cf8a7b9abc8a1d6b5a8a69f1cdcd [file] [log] [blame]
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "jsapi-tests/tests.h"
BEGIN_TEST(testContexts_IsRunning)
{
CHECK(JS_DefineFunction(cx, global, "chk", chk, 0, 0));
EXEC("for (var i = 0; i < 9; i++) chk();");
return true;
}
static bool chk(JSContext* cx, unsigned argc, JS::Value* vp)
{
JSRuntime* rt = JS_GetRuntime(cx);
JSContext* acx = JS_NewContext(rt, 8192);
if (!acx) {
JS_ReportOutOfMemory(cx);
return false;
}
// acx should not be running
bool ok = !JS_IsRunning(acx);
if (!ok)
JS_ReportError(cx, "Assertion failed: brand new context claims to be running");
JS_DestroyContext(acx);
return ok;
}
END_TEST(testContexts_IsRunning)
BEGIN_TEST(testContexts_bug563735)
{
JSContext* cx2 = JS_NewContext(rt, 8192);
CHECK(cx2);
bool ok;
{
JSAutoRequest req(cx2);
JSAutoCompartment ac(cx2, global);
JS::RootedValue v(cx2);
ok = JS_SetProperty(cx2, global, "x", v);
}
CHECK(ok);
EXEC("(function () { for (var i = 0; i < 9; i++) ; })();");
JS_DestroyContext(cx2);
return true;
}
END_TEST(testContexts_bug563735)