Re: Is there a way to run test262 in a browser (and especially in web workers)?

2016-03-19 Thread Boris Zbarsky
On 3/17/16 11:42 AM, Leo Balter wrote: The current website needs an update. If it makes less painful to run the tests on a shell, you can try https://github.com/bterlson/eshost I'm specifically looking for a harness that will run the tests in a web worker, so I'm not sure that this helps me...

Re: Is there a way to run test262 in a browser (and especially in web workers)?

2016-03-19 Thread saam barati
I use: http://v8.github.io/test262/website/default.html Saam > On Mar 17, 2016, at 6:31 AM, Boris Zbarsky wrote: > > It looks like there used to be a > http://ie.microsoft.com/testdrive/HTML5/WebWorkerTest262/Default.html but > it's gone. > > There also used to be a http://test262.ecmascript

Is there a way to run test262 in a browser (and especially in web workers)?

2016-03-19 Thread Boris Zbarsky
It looks like there used to be a http://ie.microsoft.com/testdrive/HTML5/WebWorkerTest262/Default.html but it's gone. There also used to be a http://test262.ecmascript.org/ (linked from various places on the ecmascript.org wiki) but that's gone too. Does anyone know whether this test is stil

Re: Is there a way to run test262 in a browser (and especially in web workers)?

2016-03-18 Thread Leo Balter
The current website needs an update. If it makes less painful to run the tests on a shell, you can try https://github.com/bterlson/eshost On Thu, Mar 17, 2016 at 11:34 AM, saam barati wrote: > I use: > http://v8.github.io/test262/website/default.html > > Saam > > On Mar 17, 2016, at 6:31 AM, Bor

Re: Is there a way to run test262 in a browser (and especially in web workers)?

2016-03-18 Thread Andrea Giammarchi
I have a little bash script that might help. Let's say you have the folder `~/tests` ... you can prepare the fodler as such. ```sh # go into the folder cd ~/tests # prepare 2 dirs mkdir tmp262 mkdir utils # will take forever ... git clone https://github.com/tc39/test262 ``` Now, while it's bri