aboutsummaryrefslogtreecommitdiff
path: root/framework/core.py
AgeCommit message (Collapse)Author
2009-08-21Python: Remove unused imports.Vinson Lee
2009-08-21core.py: Add Test class run method definition.Vinson Lee
2009-04-16Use Python universal newline supportVinson Lee
Use Python universal newline support so piglit-summary-html.py can generate output when on Windows. Without this patch, piglit-summary-html.py doesn't generate the html output properly from Windows output due to \r\n newlines. There might be other places this needs to get fixed too, but this currently makes the glean Windows output look okay.
2009-04-14fixes for non-Linux useVinson Lee
1. Don't run glxinfo on Windows platform. glxinfo is available on cygwin, Mac OS, and Linux platforms. 2. Run lspci only on Linux. It doesn't exist on cygwin, Windows, or Mac OS platforms.
2008-11-06Fixes for Cygwin by YaakovNicolai Haehnle
This patch fixes a few issues with piglet on Cygwin/X (which uses Mesa for OpenGL): 1) Cygwin requires that all dependencies be explicitly passed in dependency order during linking. This means that static libraries must precede the shared libraries on which they depend. 2) Cygwin defines log2 as a macro instead of a function. 3) Cygwin doesn't provide lspci(8).
2008-09-28Measure time taken for testsNicolai Haehnle
2008-08-27piglit-summary-html.py: Add glxinfo/lspci output to HTML summariesNicolai Haehnle
2008-06-30piglit-summary-html.py: Some more features for automated summariesNicolai Haehnle
2008-06-29Add piglit-create-summary.py to create summary files after the fact.Nicolai Haehnle
2008-06-14Workaround window manager disrupting test in some casesNicolai Haehnle
2008-06-12Generate abbreviated resultsNicolai Haehnle
The results files can get rather huge when tests fail, because tests like glean/blendFunc output a lot of debugging data, which we all record. Now, we generate an additional .../summary file, in which the info string is simply truncated. Pretty stupid, but it should give enough info to get an idea of the rough kind of failure. Add a new option for piglit-summary-html.py, to choose between full or abbreviated info when both are present.
2008-06-06Collect output of glxinfo and lspciNicolai Haehnle
2008-02-21Use /usr/bin/env python instead of /usr/bin/python for portability.Eric Anholt
2007-04-03Nonsensical reference in licenseNicolai Haehnle
2007-03-26Fix encode/decode.Nicolai Haehnle
I knew I shouldn't have done this. Shame on me.
2007-03-25Fix escapingNicolai Haehnle
2007-03-25Fix: undefined variable in backwards compatibility pathNicolai Haehnle
2007-03-25Store results in a directory instead of a single file.Nicolai Haehnle
The idea is to allow accompanying data (like screenshots) in the future.
2007-03-25Simply filter for ignored stderr messagesNicolai Haehnle
2007-03-25RefactoringNicolai Haehnle
2007-03-25Build test executables in a dedicated bin directoryNicolai
2007-03-24Initial commitNicolai Hähnle