~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to lib/GenTest/Reporter.pm

Add missing path separator to bindir path. Fixes some issues with debugger on Windows (missing line numbers in stack traces, etc.).

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
                        (-e $binary_unix) ||
113
113
                        (-e $binary_windows)
114
114
                ) {
115
 
                        $reporter->[REPORTER_SERVER_INFO]->{bindir} = $reporter->serverVariable('basedir').$path;
 
115
                        $reporter->[REPORTER_SERVER_INFO]->{bindir} = $reporter->serverVariable('basedir').'/'.$path;
116
116
                        $reporter->[REPORTER_SERVER_INFO]->{binary} = $binary_unix if -e $binary_unix;
117
117
                        $reporter->[REPORTER_SERVER_INFO]->{binary} = $binary_windows if -e $binary_windows;
118
118
                }