Forgot to also check in this file with the previous r121036 change:

/lldb/trunk/test/load_unload/TestLoadUnload.py

llvm-svn: 121045
This commit is contained in:
Johnny Chen 2010-12-06 22:07:36 +00:00
parent 8da34b6c35
commit ccdf435a96
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ main (int argc, char const *argv[])
void *c_dylib_handle = NULL;
int (*a_function) (void);
a_dylib_handle = dlopen (a_name, RTLD_NOW);
a_dylib_handle = dlopen (a_name, RTLD_NOW); // Set break point at this line for test_lldb_process_load_and_unload_commands().
if (a_dylib_handle == NULL)
{
fprintf (stderr, "%s\n", dlerror());