|
Revision 651078ecf9be6d0bb9c2323023ebb7fbd7f0d145, 0.9 kB
(checked in by Clément Stenac <zorglub@videolan.org>, 2 years ago)
|
Added initial support for TLS (Thread Local Storage) variables
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
#include "../pyunit.h" |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
PyObject *exception_test( PyObject *self, PyObject *args ); |
|---|
| 5 |
PyObject *create_destroy( PyObject *self, PyObject *args ); |
|---|
| 6 |
PyObject *playlist_test( PyObject *self, PyObject *args ); |
|---|
| 7 |
PyObject *vlm_test( PyObject *self, PyObject *args ); |
|---|
| 8 |
|
|---|
| 9 |
PyObject *threadvar_test( PyObject *self, PyObject *args ); |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
PyObject *timers_test( PyObject *self, PyObject *args ); |
|---|
| 13 |
|
|---|
| 14 |
PyObject *url_test( PyObject *self, PyObject *args ); |
|---|
| 15 |
|
|---|
| 16 |
PyObject *i18n_atof_test( PyObject *self, PyObject *args ); |
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
PyObject *chains_test( PyObject *self, PyObject *args ); |
|---|
| 20 |
PyObject *gui_chains_test( PyObject *self, PyObject *args ); |
|---|
| 21 |
PyObject *psz_chains_test( PyObject *self, PyObject *args ); |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
PyObject *arrays_test( PyObject *self, PyObject *args ); |
|---|
| 25 |
PyObject *bsearch_direct_test( PyObject *self, PyObject *args ); |
|---|
| 26 |
PyObject *bsearch_member_test( PyObject *self, PyObject *args ); |
|---|
| 27 |
PyObject *dict_test( PyObject *self, PyObject *args ); |
|---|
| 28 |
|
|---|