Changeset 3534

Show
Ignore:
Timestamp:
08/15/08 18:09:00 (4 months ago)
Author:
dgollub
Message:

Fail if no proper arguments are supplied.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/support.c

    r3507 r3534  
    661661        int ret; 
    662662 
    663         cmd = g_strdup_printf("test \"x`(" DIFF " -x \".*\" %s %s)`\" = \"x\"", file1, file2); 
     663        osync_assert(file1); 
     664        osync_assert(file2); 
     665 
     666        cmd = g_strdup_printf(DIFF " -x \".*\" %s %s", file1, file2); 
    664667        ret = system(cmd); 
    665668        g_free(cmd);