On Fri, Jan 17, 2014 at 4:20 PM, Jakob Stoeck <stoeckja...@googlemail.com>wrote:

> Hi, when running the example from the testing wiki 
> page<https://code.google.com/p/v8/wiki/Testing>
>
> tools/run-tests.py --arch=ia32 cctest/test-heap/SymbolTable 
> mjsunit/delete-in-eval
>
>
> I get the following output:
>
> v8$ tools/run-tests.py --arch=ia32 cctest/test-heap/SymbolTable
> mjsunit/delete-in-eval
> >>> running presubmit tests
> Running C++ lint check...
> No changes in files detected. Skipping cpplint check.
> Running copyright header, trailing whitespaces and two empty lines between
> declarations check...
> Total violating files: 0
> >>> Running tests for ia32.release
> Traceback (most recent call last):
>   File "tools/run-tests.py", line 463, in <module>
>     sys.exit(Main()) [...]
>

By specifying "--arch=ia32" you tell the runner to execute both
ia32.release and ia32.debug tests. The stack trace above tries to tell you
in a cryptic way you haven't built ia32.release. Note that run-tests.py is
just a runner, and it doesn't build anything on its own.

[...] When adding the test/ folder to the path I get the following: [...]
>

No need to fiddle around with the PATH, just make sure that the right
version has been built before, e.g. via "make -j32 ia32" (choose a sensible
-j value for your box). A simpler approach is to use "make" to build+run:

   make -j32 ia32.check TESTJOBS=cctest/test-heap/SymbolTable

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to