Changeset 3282

Show
Ignore:
Timestamp:
04/20/08 13:41:48 (5 months ago)
Author:
dgollub
Message:

Avoid system() calls in tests - use osync_testing_file_chmod() instead
of system("chmod ...").

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tests/ipc-tests/check_ipc.c

    r3280 r3282  
    836836        fail_unless(error == NULL, NULL); 
    837837         
    838         if (system("chmod 000 /tmp/testpipe")) 
     838        if (osync_testing_file_chmod("/tmp/testpipe", 000)) 
    839839                abort(); 
    840840