Incorporated the second set of Johan Smet's changes to port glean to Microsoft Windows.
Added the ability to include or exclude specific tests from a run.
A recent change in the behavior of the C++ string
getline()
function in the GNU libraries caused
glean's test comparison operation to appear to hang. The new
behavior appears to be correct, but it was necessary to add a
workaround to glean so that it would run properly on both old
and new versions of the library.
Incorporated the first set of Johan Smet's changes to port glean to Microsoft Windows. These included:
WindowSystem& ws(env->winSys);had to be changed to
WindowSystem& ws = env->winSys;
In lib/dsurf, bit counts for green and blue channels were reversed. This caused incorrect drawing-surface configuration reports for normal color channels and accumulation buffer channels, and also confused code that determined errors in color values.
In lib/dsurf, the expression for computing bits-in-error was in error. :-)
Switched from egcs to g++ in common.mak.