Changeset 106877 in webkit
- Timestamp:
- Feb 6, 2012, 4:53:23 PM (15 years ago)
- Location:
- trunk/Source/WebKit/gtk
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
tests/test_utils.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/gtk/ChangeLog
r106851 r106877 1 2012-02-06 Gustavo Noronha Silva <gns@gnome.org> 2 3 Do not try to chdir to the directory where the executable is in 4 only if the path is absolute. This makes tests runnable from 5 anywhere. 6 7 Reviewed by Martin Robinson. 8 9 * tests/test_utils.c: 10 (testutils_relative_chdir): 11 1 12 2012-02-06 Gustavo Noronha Silva <gns@gnome.org> 2 13 -
trunk/Source/WebKit/gtk/tests/test_utils.c
r90994 r106877 30 30 if (g_chdir(repoPath)) 31 31 return -1; 32 } else if (g_path_is_absolute(executablePath)) { 33 if (g_chdir(g_path_get_dirname(executablePath))) 32 } else if (g_chdir(g_path_get_dirname(executablePath))) 34 33 return -1; 35 }36 34 37 35 while (!g_file_test(targetFilename, G_FILE_TEST_EXISTS)) {
Note:
See TracChangeset
for help on using the changeset viewer.