You are here

the test suite

3 posts / 0 new
Last post
mspiegel's picture
Offline
Joined: 07/31/2009 - 15:24
the test suite

A gentle reminder that scripts must live in either the models/passing, models/failing, or demo/ directories, and in exactly one of these locations. Duplicating the files causes "make test" to run longer than necessary (which is a nuisance), but also forces the developers to make corrections to an existing script in two locations (which they will forget to do). Use the "svn mv" command when moving files in subversion. Also, when adding a script to the /demo directory, remember to update demo/00INDEX, although people have been good about that lately.

mspiegel's picture
Offline
Joined: 07/31/2009 - 15:24
Also, all the scripts in the

Also, all the scripts in the /demo and models/passing directories should work, all the scripts in the test suite should contain omxCheckCloseEnough() statements, and all commits to the repository should be preceded by a successful execution of "make test".

mspiegel's picture
Offline
Joined: 07/31/2009 - 15:24
I've added the optional

I've added the optional argument "CPUS=n" to the "make test" target of the Makefile. When the argument is used, the test suite will be executed using n cores on your machine. The only downside is the progress messages no longer appear. But the test suite executes in approximately (1/n) the amount of time as the sequential execution.