mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-10 19:19:12 +08:00
Since 4e7817498efc, we're just running the tests against the installed DLL. We're arranging to put the build directory on the path, but since it doesn't contain cygwin1.dll (since it's built with a different name and renamed on installation), that doesn't have any effect. Arrange to place the just-built DLL into a directory which the testsuite can place on it's path (while running the test, but not while compiling it). Also fix any remaining references to cygwin0.dll in testsuite, documentation and comments. Fixes: 4e7817498efc ("Cygwin: Makefile: Drop all the "test dll" considerations")
14 lines
296 B
Plaintext
14 lines
296 B
Plaintext
proc winsup_version {} {
|
|
global env
|
|
global runtime_root
|
|
clone_output "\n[exec grep -a ^%%% $runtime_root/cygwin1.dll]\n"
|
|
if { [info exists env(CYGWIN)] } {
|
|
clone_output "CYGWIN=$env(CYGWIN)\n"
|
|
} else {
|
|
clone_output "CYGWIN=\n"
|
|
}
|
|
}
|
|
|
|
proc winsup_exit {} {
|
|
}
|