Skip to content

Files

Latest commit

253e4a8 · Mar 24, 2017

History

History
This branch is 1714 commits behind igvteam/igv:main.

test

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 17, 2017
Oct 4, 2013
Mar 24, 2017
Sep 14, 2015
Nov 29, 2016
========================
TESTING IGV
========================

Prerequisities:
In addition to those used for building IGV,
additional data must be downloaded.


These are available for download at ftp://ftp.broadinstitute.org/pub/igv/largedata.zip.
This zip file is approximately 300 Mb.

Unzip these files to igv/test/largedata. The unzipped size is approximately 1 Gb.

If you push to put these files at a different location, this path must be passed to ant as the property LARGE_DATA_DIR.
For example, let's say you placed these data files in /user/remote/drive/largedata:

ant -DLARGE_DATA_DIR="/user/remote/drive/largedata/" tests

To run the tests, simply execute the command:

ant tests

To run specific tests, specify a filesetpattern property:

ant -Dfilesetpattern=*reader* tests

This would run any test class which had "reader" in the name.

ant -Dfilesetpattern=IgvToolsTest tests

would run only those test classes named IgvToolsTest.