I have a general question on the make files... specifically the make test portion of it.. Since talking to dan about things this would be where I could be of most help.
I have an issue with the make test currently.. I am getting :
[cahrendt@stinky wine-git]$ make test make[1]: Entering directory `/home/cahrendt/wine-git/tools' make[1]: `makedep' is up to date. make[1]: Leaving directory `/home/cahrendt/wine-git/tools' make[1]: Entering directory `/home/cahrendt/wine-git/dlls' make[2]: Entering directory `/home/cahrendt/wine-git/dlls/advapi32/tests' ../../../tools/runtest -q -P wine -M advapi32.dll -T ../../.. -p advapi32_test.exe.so cred.c && touch cred.ok Warning: could not find DOS drive for current working directory '/home/cahrendt/wine-git/dlls/advapi32/tests', starting in the Windows directory. wine: could not load L"C:\windows\system32\advapi32_test.exe.so": Module not found make[2]: *** [cred.ok] Error 126 make[2]: Leaving directory `/home/cahrendt/wine-git/dlls/advapi32/tests' make[1]: *** [advapi32/tests/__test__] Error 2 make[1]: Leaving directory `/home/cahrendt/wine-git/dlls' make: *** [dlls/__test__] Error 2
which is not a code issue as far as I am able to see but rather a make file issue.
As you see the advapi32 test can't be found. However if you look in the directory the .so is there... so I need some assistance to help me understand where and how the make test works so I can figure out why its looking in the system32 directory and not the current directory for the shared object. Any help?
Chris