X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjni%2Flibusb%2Ftests%2Flibusb_testlib.h;fp=app%2Fsrc%2Fmain%2Fjni%2Flibusb%2Ftests%2Flibusb_testlib.h;h=0000000000000000000000000000000000000000;hb=4d7fc85844bbd24cc1b15f60fed3b8aaa507962f;hp=6c987d31cd5f5906cdd3a8eb8610a20f62005aa8;hpb=d0d496554f96cebf84db3e9b3cf507577272ef8c;p=rtmpclient.git diff --git a/app/src/main/jni/libusb/tests/libusb_testlib.h b/app/src/main/jni/libusb/tests/libusb_testlib.h deleted file mode 100644 index 6c987d3..0000000 --- a/app/src/main/jni/libusb/tests/libusb_testlib.h +++ /dev/null @@ -1,107 +0,0 @@ -/* - * libusb test library helper functions - * Copyright © 2012 Toby Gray - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef LIBUSB_TESTLIB_H -#define LIBUSB_TESTLIB_H - -#include - -#if !defined(bool) -#define bool int -#endif -#if !defined(true) -#define true (1 == 1) -#endif -#if !defined(false) -#define false (!true) -#endif - -/** Values returned from a test function to indicate test result */ -typedef enum { - /** Indicates that the test ran successfully. */ - TEST_STATUS_SUCCESS, - /** Indicates that the test failed one or more test. */ - TEST_STATUS_FAILURE, - /** Indicates that an unexpected error occurred. */ - TEST_STATUS_ERROR, - /** Indicates that the test can't be run. For example this may be - * due to no suitable device being connected to perform the tests.*/ - TEST_STATUS_SKIP -} libusb_testlib_result; - -/** - * Context for test library functions - */ -typedef struct { - char ** test_names; - int test_count; - bool list_tests; - bool verbose; - int old_stdout; - int old_stderr; - FILE* output_file; - int null_fd; -} libusb_testlib_ctx; - -/** - * Logs some test information or state - */ -void libusb_testlib_logf(libusb_testlib_ctx * ctx, - const char* fmt, ...); - -/** - * Function pointer for a libusb test function. - * - * Should return TEST_STATUS_SUCCESS on success or another TEST_STATUS value. - */ -typedef libusb_testlib_result -(*libusb_testlib_test_function)(libusb_testlib_ctx * ctx); - -/** - * Structure holding a test description. - */ -typedef struct { - /** Human readable name of the test. */ - const char * name; - /** The test library will call this function to run the test. */ - libusb_testlib_test_function function; -} libusb_testlib_test; - -/** - * Value to use at the end of a test array to indicate the last - * element. - */ -#define LIBUSB_NULL_TEST {NULL, NULL} - -/** - * Runs the tests provided. - * - * Before running any tests argc and argv will be processed - * to determine the mode of operation. - * - * \param argc The argc from main - * \param argv The argv from main - * \param tests A NULL_TEST terminated array of tests - * \return 0 on success, non-zero on failure - */ -int libusb_testlib_run_tests(int argc, - char ** argv, - const libusb_testlib_test * tests); - -#endif //LIBUSB_TESTLIB_H