source: webkit/trunk/JavaScriptCore/kjs/kjs-test@ 1881

Last change on this file since 1881 was 654, checked in by mjs, 23 years ago

Top level:

  • Tests/harness.c: (runtest): Run regression tests with debug frameworks. If they pass, run them again so the leak checker actually works (it never finds leaks with the debug frameworks in use).

Fix regression test failures:

  • Tests/CookieManager/wkcookie-test.m: (main):
  • Tests/WebFoundation-Misc/ifnsobjectextensions-test.m: (main):

WebCore:

  • src/kwq/KWQString.mm: (QString::fill): Fix a bug that was triggering assertion failures in CF.
  • src/kdelibs/kjs/kjs-test: Turn off some environment variables to make the tests pass.

WebFoundation:

  • Misc.subproj/IFNSStringExtensions.m: (-[NSString parseAsKeyValuePairHandleQuotes:]): Fix a bug that was leading to an assertion failure.
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 286 bytes
Line 
1#!/bin/sh
2
3unset MallocStackLogging
4export MallocStackLogging
5unset MallocScribble
6export MallocScribble
7unset MallocGuardEdges
8export MallocGuardEdges
9unset DYLD_IMAGE_SUFFIX
10export DYLD_IMAGE_SUFFIX
11
12`dirname $0`/testkjs `dirname $0`/test.js 2>&1
13
14if [ $? -eq 1 ]; then
15 exit 0;
16fi
Note: See TracBrowser for help on using the repository browser.