- Global fifo_test
- Test to exercise globus_fifo_t implementation
- Global test_globus_url
- Parse well-formed FTP URL containing scheme, host, and path with globus_url_parse()
- Global test_globus_url
- Parse well-formed FTP URL containing scheme, username, hex-encoded password, host, and path with globus_url_parse()
- Global test_globus_url
- Parse well-formed HTTP URL containing scheme and host with globus_url_parse()
- Global test_globus_url
- Parse a well-formed HTTP URL containing scheme, host, and partially hex-encoded path with globus_url_parse()
- Global test_globus_url
- Parse and absolute file URL
- Global test_globus_url
- Parse an absolute file URL with a host component
- Global test_globus_url
- Parse an absolute file URL with a host component
- Global test_globus_url
- Parse an absolute file URL with several leading /s
- Global test_globus_url
- Parse an absolute file url with only one / after the initial :
- Global test_globus_url
- Parse an ftp url with username, password, host, path
- Global test_globus_url
- Parse an x-nexus URL
- Global test_globus_url
- Parse an ldap URL
- Global test_globus_url
- Parse an ldap URL
- Global test_globus_url
- Parse a URL with a non-standard URL scheme
- Global test_globus_url
- URL failure with bad ldap attributes
- Global test_globus_url
- URL failure with bad ldap URL
- Global test_globus_url
- URL failure with bad ftp path
- Global test_globus_url
- URL failure with bad ftp port
- Global test_globus_url
- URL failure with bad ftp port
- Global test_globus_url
- URL failure with bad nexus host
- Global test_globus_url
- URL failure with bad nexus host
- Global test_globus_url
- URL failure with bad ftp user
- Global test_globus_url
- URL failure with bad ftp user
- Global test_globus_url
- URL failure with bad ftp user
- Global test_globus_url
- URL failure with bad file path
- Global test_globus_url
- URL failure with bad file path
- Global test_globus_url
- URL failure with bad ftp scheme
- Global test_globus_url
- URL failure with bad scheme
- Global test_globus_url
- URL failure with bad scheme
- Global hash_test
- Initialize hashtable with globus_hashtable_init()
- Global hash_test
- Insert datum 123 into hashtable with globus_hashtable_insert()
- Global hash_test
- Insert datum 456 into hashtable with globus_hashtable_insert()
- Global hash_test
- Insert datum 111 into hashtable with globus_hashtable_insert()
- Global hash_test
- Insert datum 222 into hashtable with globus_hashtable_insert()
- Global hash_test
- Remove datum 222 from hashtable with globus_hashtable_remove()
- Global hash_test
- Remove datum 456 from hashtable with globus_hashtable_remove()
- Global hash_test
- Destroy hashtable with globus_hashtable_destroy()
- Global list_test
- Call globus_list_size() with an empty list
- Global list_test
- Insert a datum into a globus_list_t with globus_list_insert()
- Global list_test
- Add a datum to a globus_list_t with globus_list_cons()
- Global list_test
- Verify that globus_list_size() returns 2 after adding two data items to a list.
- Global list_test
- Insert x3 into a list with globus_list_insert()
- Global list_test
- Insert x4 into a list with globus_list_insert()
- Global list_test
- Verify that the size of the list is now 4 with globus_list_size()
- Global list_test
- Search for the first item in a list with globus_list_search()
- Global list_test
- Use globus_list_first() to return the datum from the returned list node. Verify that the search result matches the value searched for.
- Global list_test
- Search for the third item in a list with globus_list_search()
- Global list_test
- Use globus_list_first() to return the datum from the returned list node. Verify that the search result matches the value searched for.
- Global list_test
- Search for the fourth item in a list with globus_list_search()
- Global list_test
- Use globus_list_first() to return the datum from the returned list node. Verify that the search result matches the value searched for.
- Global list_test
- Search for the second item in a list with globus_list_search()
- Global list_test
- Use globus_list_first() to return the datum from the returned list node. Verify that the search result matches the value searched for.
- Global list_test
- Search for the fourth item in a list with globus_list_search_pred()
- Global list_test
- Search for the second item in a list with globus_list_search_pred()
- Global list_test
- Search for the third item in a list with globus_list_search_pred()
- Global list_test
- Search for the first item in a list with globus_list_search_pred()
- Global list_test
- Search for the second item in the list with globus_list_search()
- Global list_test
- Remove the second item in the list with globus_list_remove()
- Global list_test
- Remove the first item in the list with globus_list_remove()
- Global list_test
- Remove the first item in the list with globus_list_remove()
- Global list_test
- Remove the first item in the list with globus_list_remove()
- Global list_test
- Verify that the list is empty with globus_list_empty()
- Global globus_memory_test
- Create a globus_memory_t with globus_memory_init(), pop a whole lot of memory off of it, dump the initial set of memory, and then push the nodes back.
- Global module_test
- Use globus_module_setenv() to set a module_environment variable. Then, use globus_module_getenv() to check its value
- Global module_test
- Deactivate a non-activated module with globus_module_deactivate()
- Global module_test
- Activate GLOBUS_COMMON_MODULE with globus_module_activate()
- Global module_test
- Get a module pointer with globus_module_get_module_pointer()
- Global module_test
- Activate a module with globus_module_activate()
- Global module_test
- Activate an already active module with globus_module_activate()
- Global module_test
- Activate an already active module with globus_module_activate()
- Global module_test
- Deactivate an already active module with globus_module_deactivate(). It should remain active.
- Global module_test
- Activate an already active module with globus_module_activate()
- Global module_test
- Deactivate an already active module with globus_module_deactivate(). All modules should remain active except module1.
- Global module_test
- Deactivate an already deactivated module with globus_module_deactivate(). This should not change activate state.
- Global module_test
- Deactivate an active module with globus_module_deactivate()
- Global module_test
- Deactivate an active module with globus_module_deactivate()
- Global module_test
- Reactivate module1 with globus_module_activate()
- Global globus_off_t_test
- Check that globus_off_t is at least 64 bits long
- Global globus_off_t_test
- Check that GLOBUS_OFF_T_FORMAT can handle a INT64_MAX valued globus_off_t.
- Global thread_test
- The thread_test creates a p producer threads and c consumer threads, and then has the producers (combined) create n pieces of data to be consumed by the consumer threads.
- Global timedwait_test
- Call globus_cond_signal() before globus_cond_timedwait() timeout
- Global timedwait_test
- Call globus_cond_signal() after globus_cond_timedwait() timeout
- Global timedwait_test
- Call globus_cond_signal() before calling globus_cond_timedwait()
- Global uuid_bad_import_test
- Try to import a string which is not formatted as a UUID
- Global uuid_fields_test
- Create a globus_uuid_t with globus_uuid_create(), then get its fields twice and compare the two
- Global uuid_import_test
- Create a globus_uuid_t with globus_uuid_create(), import its text representation into a new uuid with globus_uuid_import(), and compare the two with GLOBUS_UUID_MATCH()
- Global uuid_is_unique_test
- Create a pair of uuids with globus_uuid_create() and verify that they are different
Generated on 17 Mar 2017 for globus_common by
1.4.7