Show
Ignore:
Timestamp:
09/09/10 20:23:50 (21 months ago)
Author:
westram
Message:
  • merged from refactor [6796] [6804] [6806] [6808]
    • added header for planned library ARB_CORE
    • renamed inline.h into arb_str.h
    • header for global general purpose defines/inlines (arb_defs.h)
      • use ARRAY_ELEMS where applicable
    • removed duplicate of ARB_strscmp (GBS_strscmp). No longer needed cause ARBDB is now C++
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/TOOLS/arb_probe.cxx

    r6750 r6813  
    1313#include <client.h> 
    1414#include <servercntrl.h> 
     15#include <arb_defs.h> 
    1516 
    1617struct apd_sequence { 
     
    451452} 
    452453 
    453 #define COUNT(array) sizeof(array)/sizeof(*array) 
    454  
    455454void TEST_SLOW_match_probe() { 
    456455    const char *arguments[] = { 
     
    462461        "BcSSSS00\1" "  BcSSSS00            0     0  0.0   2 0   .......UU-===============-UCAAGUCGA\1"; 
    463462 
    464     test_arb_probe(COUNT(arguments), arguments, expected); 
     463    test_arb_probe(ARRAY_ELEMS(arguments), arguments, expected); 
    465464} 
    466465 
     
    485484        "AUCAAGUCGAGCGAUGAA 18 B-     1   16    4 44.4 52.0    UUCAUCGCUCGACUUGAU |  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  1,  1,  2,  3,\n"; 
    486485 
    487     test_arb_probe(COUNT(arguments), arguments, expected); 
     486    test_arb_probe(ARRAY_ELEMS(arguments), arguments, expected); 
    488487} 
    489488 
     
    500499    "ClfPerfr\1" "  ClfPerfr            0     0  0.0  17 0   AGAGUUUGA-==================-UUUCCUUCG\1"; 
    501500 
    502     test_arb_probe(COUNT(arguments), arguments, expected); 
     501    test_arb_probe(ARRAY_ELEMS(arguments), arguments, expected); 
    503502} 
    504503