Changeset aa7342864e66f31de3534726e92d0b570f42232e
- 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
| r65bc1a4 |
raa73428 |
|
| 50 | 50 | libvlc_instance_t *vlc; |
|---|
| 51 | 51 | const char *args[argc + 3]; |
|---|
| | 52 | int id; |
|---|
| 52 | 53 | |
|---|
| 53 | 54 | alarm (30); /* Make sure "make check" does not get stuck */ |
|---|
| … | … | |
| 64 | 65 | catch (); |
|---|
| 65 | 66 | |
|---|
| | 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 | |
|---|
| 66 | 77 | libvlc_destroy (vlc, &ex); |
|---|
| 67 | 78 | catch (); |
|---|