Missing "return true;" in jsapi-test is what was really causing it to fail on tinderboxes. Sorry for the mess. r=orange, shame=me.

This commit is contained in:
Jason Orendorff 2010-06-09 14:18:34 -05:00
parent 8dc56be0dd
commit 6c7518750c

View File

@ -71,6 +71,7 @@ BEGIN_TEST(testContexts_bug561444)
d->ok = true; d->ok = true;
} }
END_TEST(testContexts_bug561444) END_TEST(testContexts_bug561444)
#endif
BEGIN_TEST(testContexts_bug563735) BEGIN_TEST(testContexts_bug563735)
{ {
@ -111,6 +112,6 @@ BEGIN_TEST(testContexts_bug570764)
JS_DestroyContext(cx2); JS_DestroyContext(cx2);
} }
JS_DestroyRuntime(rt2); JS_DestroyRuntime(rt2);
return true;
} }
END_TEST(testContexts_bug570764) END_TEST(testContexts_bug570764)
#endif