Changeset aa7342864e66f31de3534726e92d0b570f42232e

Show
Ignore:
Timestamp:
21/10/07 19:30:59 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1192987859 +0000
git-parent:

[8837d3d6ac772535558a22e8cc750d2497f126d5]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1192987859 +0000
Message:

Also test libvlc_playlist_clear and libvlc_playlist_add_extended

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/control/testapi.c

    r65bc1a4 raa73428  
    5050    libvlc_instance_t *vlc; 
    5151    const char *args[argc + 3]; 
     52    int id; 
    5253 
    5354    alarm (30); /* Make sure "make check" does not get stuck */ 
     
    6465    catch (); 
    6566 
     67    libvlc_playlist_clear (vlc, &ex); 
     68    catch (); 
     69 
     70    id = libvlc_playlist_add_extended (vlc, "/dev/null", "Test", 0, NULL, 
     71                                       &ex); 
     72    catch (); 
     73 
     74    libvlc_playlist_clear (vlc, &ex); 
     75    catch (); 
     76 
    6677    libvlc_destroy (vlc, &ex); 
    6778    catch ();