Changeset 481

Show
Ignore:
Timestamp:
08/09/07 16:41:17
Author:
rachel
Message:

#ifdef'd WIP code. Correct test code is found in test_packet_types.c

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openpgpsdk/trunk/tests/test_rsa_encrypt.c

    r473 r481  
    275275    } 
    276276 
    277 static void test_rsa_encrypt(const int has_armour, const ops_key_data_t *key, const char *filename) 
    278     { 
     277static void test_rsa_encrypt(const int has_armour __attribute__((__unused__)), const ops_key_data_t *key __attribute__((__unused__)), const char *filename __attribute__((__unused__))) 
     278    { 
     279#ifdef NOTYETUSED 
    279280    char myfile[MAXBUF+1]; 
    280281    char encfile[MAXBUF+1]; 
     
    353354    create_testtext(filename,&buffer[0],MAXBUF); 
    354355    CU_ASSERT(strcmp(text,buffer)==0); 
     356#endif 
    355357    } 
    356358