Changeset 34566 in webkit for trunk/JavaScriptCore/tests
- Timestamp:
- Jun 15, 2008, 3:55:28 AM (17 years ago)
- Location:
- trunk/JavaScriptCore/tests/mozilla
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/tests/mozilla/expected.html
r30871 r34566 1 1 <html><head> 2 <title>Test results, kjs</title>2 <title>Test results, squirrelfish</title> 3 3 </head> 4 4 <body bgcolor='white'> 5 5 <a name='tippy_top'></a> 6 <h2>Test results, kjs</h2><br>6 <h2>Test results, squirrelfish</h2><br> 7 7 <p class='results_summary'> 8 8 Test List: All tests<br> 9 9 Skip List: (none)<br> 10 10 1135 test(s) selected, 1127 test(s) completed, 51 failures reported (4.52% failed)<br> 11 Engine command line: /Volumes/Big/ggaren/build/Debug/ testkjs<br>11 Engine command line: /Volumes/Big/ggaren/build/Debug/jsc <br> 12 12 OS type: Darwin il0301e-dhcp191.apple.com 9.2.0 Darwin Kernel Version 9.2.0: Tue Feb 5 16:13:22 PST 2008; root:xnu-1228.3.13~1/RELEASE_I386 i386<br> 13 13 Testcase execution time: 1 minutes, 50 seconds.<br> … … 558 558 <a name='retest_list'></a> 559 559 <h2>Retest List</h2><br> 560 # Retest List, kjs, generated Thu Mar 6 13:53:55 2008.560 # Retest List, squirrelfish, generated Thu Mar 6 13:53:55 2008. 561 561 # Original test base was: All tests. 562 562 # 1127 of 1135 test(s) were completed, 51 failures reported. -
trunk/JavaScriptCore/tests/mozilla/js1_2/Array/tostring_1.js
r11995 r34566 46 46 /* This test assumes that if version() exists, it can set the JavaScript 47 47 * interpreter to an arbitrary version. To prevent unhandled exceptions in 48 * other tests, testkjsimplements version() as a stub function, but48 * other tests, jsc implements version() as a stub function, but 49 49 * JavaScriptCore doesn't support setting the JavaScript engine's version. 50 50 -
trunk/JavaScriptCore/tests/mozilla/js1_2/Array/tostring_2.js
r11995 r34566 45 45 /* This test assumes that if version() exists, it can set the JavaScript 46 46 * interpreter to an arbitrary version. To prevent unhandled exceptions in 47 * other tests, testkjsimplements version() as a stub function, but47 * other tests, jsc implements version() as a stub function, but 48 48 * JavaScriptCore doesn't support setting the JavaScript engine's version. 49 49 -
trunk/JavaScriptCore/tests/mozilla/jsDriver.pl
r34180 r34566 481 481 "(-e|--engine) <type> ... Specify the type of engine(s) to test.\n" . 482 482 " <type> is one or more of\n" . 483 " ( kjs|smopt|smdebug|lcopt|lcdebug|xpcshell|" .483 " (squirrelfish|smopt|smdebug|lcopt|lcdebug|xpcshell|" . 484 484 "rhino|rhinoi|rhinoms|rhinomsi|rhino9|rhinoms9).\n" . 485 485 "(-f|--file) <file> Redirect output to file named <file>.\n" . … … 554 554 &dd ("getting epimetheus engine command."); 555 555 $retval = &get_ep_engine_command; 556 } elsif ($opt_engine_type eq " kjs") {557 &dd ("getting kjsengine command.");558 $retval = &get_ kjs_engine_command;556 } elsif ($opt_engine_type eq "squirrelfish") { 557 &dd ("getting squirrelfish engine command."); 558 $retval = &get_squirrelfish_engine_command; 559 559 560 560 } else { … … 634 634 635 635 # 636 # get the shell command used to run kjs637 # 638 sub get_ kjs_engine_command {636 # get the shell command used to run squirrelfish 637 # 638 sub get_squirrelfish_engine_command { 639 639 my $retval; 640 640 … … 645 645 $retval = "\"" . $opt_shell_path . "\""; 646 646 } else { 647 die "Please specify a full path to the kjstesting engine";647 die "Please specify a full path to the squirrelfish testing engine"; 648 648 } 649 649
Note:
See TracChangeset
for help on using the changeset viewer.