From 6c7518750ce2c7854e2a06134dd8024d14c699ae Mon Sep 17 00:00:00 2001 From: Jason Orendorff Date: Wed, 9 Jun 2010 14:18:34 -0500 Subject: [PATCH] Missing "return true;" in jsapi-test is what was really causing it to fail on tinderboxes. Sorry for the mess. r=orange, shame=me. --- js/src/jsapi-tests/testContexts.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/src/jsapi-tests/testContexts.cpp b/js/src/jsapi-tests/testContexts.cpp index d2d3fc9c8f1..30317d38265 100644 --- a/js/src/jsapi-tests/testContexts.cpp +++ b/js/src/jsapi-tests/testContexts.cpp @@ -71,6 +71,7 @@ BEGIN_TEST(testContexts_bug561444) d->ok = true; } END_TEST(testContexts_bug561444) +#endif BEGIN_TEST(testContexts_bug563735) { @@ -111,6 +112,6 @@ BEGIN_TEST(testContexts_bug570764) JS_DestroyContext(cx2); } JS_DestroyRuntime(rt2); + return true; } END_TEST(testContexts_bug570764) -#endif