Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1614)

Unified Diff: test/test262/harness-adapt.js

Issue 478163002: test/test262: update testcfg.py for new test262 (Closed) Base URL: git@github.com:smikes/v8.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/test262/testcfg.py » ('j') | test/test262/testcfg.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test262/harness-adapt.js
diff --git a/test/test262/harness-adapt.js b/test/test262/harness-adapt.js
index 52b5de70bdd2e16a8212164a3dfcd7400aa67c78..ae7f8a7e8b0b3d788bbf410ee075877f7733083b 100644
--- a/test/test262/harness-adapt.js
+++ b/test/test262/harness-adapt.js
@@ -80,3 +80,13 @@ var ES5Harness = (function() {
registerTest: registerTest
}
})();
+
+var $DONE;
+$DONE = function __v8_$DONE__(arg){
Jakob Kummerow 2014/08/18 11:55:46 why not just: function $DONE(arg) {
smikes 2014/08/18 16:04:26 Done.
+ if (arg) {
+ print('FAILED! Error: ' + arguments[0]);
Jakob Kummerow 2014/08/18 11:55:47 why not s/arguments[0]/arg/ ?
smikes 2014/08/18 16:04:26 Done.
+ quit(1);
+ }
+
+ quit(0);
+};
« no previous file with comments | « no previous file | test/test262/testcfg.py » ('j') | test/test262/testcfg.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698