forked from igvteam/igv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
36 lines (21 loc) · 1.05 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
========================
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 path, 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.
The build assumes that Apache BCEL is available. If you have failing tests, add the BCEL JAR file to your
$ANT_HOME/lib directory.