Changeset 3209
- Timestamp:
- May 4, 2014, 3:52:34 PM (9 years ago)
- Location:
- trunk/test
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Suite.cc
r3201 r3209 47 47 #ifndef YAT_HAVE_LIBBAM 48 48 out() << "no libbam\n"; 49 return EXIT_SKIP;49 exit (EXIT_SKIP); 50 50 #endif 51 51 #ifndef HAVE_SAMTOOLS 52 52 out() << "no samtools\n"; 53 return EXIT_SKIP;53 exit (EXIT_SKIP); 54 54 #endif 55 55 } -
trunk/test/bam_iterator.cc
r3201 r3209 144 144 145 145 } 146 #else 147 void test1(test::Suite& suite) {} 146 148 #endif -
trunk/test/bam_pair_iterator.cc
r3201 r3209 33 33 34 34 using namespace theplu::yat; 35 #ifdef YAT_HAVE_LIBBAM 35 36 using namespace omic; 37 #endif 36 38 37 39 void test1(test::Suite& suite); … … 50 52 } 51 53 52 using namespace omic;53 54 54 55 void test1(test::Suite& suite)
Note: See TracChangeset
for help on using the changeset viewer.