Changeset 3209


Ignore:
Timestamp:
May 4, 2014, 3:52:34 PM (9 years ago)
Author:
Peter
Message:

add missing source file and fix compilation error --without-samtools

Location:
trunk/test
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/Suite.cc

    r3201 r3209  
    4747#ifndef YAT_HAVE_LIBBAM
    4848      out() << "no libbam\n";
    49       return EXIT_SKIP;
     49      exit (EXIT_SKIP);
    5050#endif
    5151#ifndef HAVE_SAMTOOLS
    5252      out() << "no samtools\n";
    53       return EXIT_SKIP;
     53      exit (EXIT_SKIP);
    5454#endif
    5555    }
  • trunk/test/bam_iterator.cc

    r3201 r3209  
    144144
    145145}
     146#else
     147void test1(test::Suite& suite) {}
    146148#endif
  • trunk/test/bam_pair_iterator.cc

    r3201 r3209  
    3333
    3434using namespace theplu::yat;
     35#ifdef YAT_HAVE_LIBBAM
    3536using namespace omic;
     37#endif
    3638
    3739void test1(test::Suite& suite);
     
    5052}
    5153
    52 using namespace omic;
    5354
    5455void test1(test::Suite& suite)
Note: See TracChangeset for help on using the changeset viewer.